From 5c144a8ba3c460e5ccc6d555ecad7ccf88724282 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Wed, 27 Nov 2024 14:29:22 +0800 Subject: [PATCH] Create build-osx.yml --- .github/workflows/build-osx.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build-osx.yml diff --git a/.github/workflows/build-osx.yml b/.github/workflows/build-osx.yml new file mode 100644 index 00000000..a61a2f19 --- /dev/null +++ b/.github/workflows/build-osx.yml @@ -0,0 +1,32 @@ +name: release + +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 && + ./build-osx.sh + + - name: Upload build artifacts + uses: actions/upload-artifact@v4 + with: + name: v2rayN + path: | + ./v2rayN/v2rayN-osx.zip + + \ No newline at end of file