mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-12 19:28:07 +00:00
41 lines
713 B
YAML
41 lines
713 B
YAML
name: release Windows
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
configuration: [Release]
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: cd v2rayN &&
|
|
./build.ps1
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: v2rayN-windows-64
|
|
path: |
|
|
./v2rayN/v2rayN-windows-64.zip
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: v2rayN-windows-arm64
|
|
path: |
|
|
./v2rayN/v2rayN-windows-arm64.zip
|
|
|
|
|
|
|
|
|