mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 21:52:25 +00:00
update build
This commit is contained in:
parent
8ee00907b7
commit
d4eb8e59a6
3 changed files with 7 additions and 3 deletions
4
.github/workflows/build-linux.yml
vendored
4
.github/workflows/build-linux.yml
vendored
|
@ -19,7 +19,9 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cd v2rayN &&
|
run: |
|
||||||
|
cd v2rayN
|
||||||
|
chmod 755 build-linux.sh
|
||||||
./build-linux.sh
|
./build-linux.sh
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
|
|
4
.github/workflows/build-osx.yml
vendored
4
.github/workflows/build-osx.yml
vendored
|
@ -19,7 +19,9 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cd v2rayN &&
|
run: |
|
||||||
|
cd v2rayN
|
||||||
|
chmod 755 build-osx.sh
|
||||||
./build-osx.sh
|
./build-osx.sh
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
|
|
|
@ -3,7 +3,7 @@ param (
|
||||||
[ValidateNotNullOrEmpty()]
|
[ValidateNotNullOrEmpty()]
|
||||||
[string]
|
[string]
|
||||||
$OutputPathWin64 = './bin/v2rayN/win-x64',
|
$OutputPathWin64 = './bin/v2rayN/win-x64',
|
||||||
$OutputPathWinArm64 = './bin/v2rayN/win-arm64',
|
$OutputPathWinArm64 = './bin/v2rayN/win-arm64'
|
||||||
)
|
)
|
||||||
|
|
||||||
Write-Host 'Building Windows'
|
Write-Host 'Building Windows'
|
||||||
|
|
Loading…
Reference in a new issue