mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 21:52:25 +00:00
34 lines
No EOL
546 B
YAML
34 lines
No EOL
546 B
YAML
name: release macOS
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
configuration: [Release]
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: |
|
|
cd v2rayN
|
|
chmod 755 build-osx.sh
|
|
./build-osx.sh
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: v2rayN-osx
|
|
path: |
|
|
./v2rayN/v2rayN-osx.zip
|
|
|
|
|