forked from 2dust/v2rayN
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 923 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build application
run: |
cd v2rayN
.\build.ps1
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: v2rayN
path: |
.\v2rayN\v2rayN.zip
- name: Publish Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: ${{ github.ref_name }}
tag: ${{ github.ref_name }}
prerelease: false
files: |
.\v2rayN\v2rayN.zip
body: |
Этот релиз был создан автоматически.
Описание будет обновлено в ближайшее время.