-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (34 loc) · 941 Bytes
/
Release.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
name: Release
'on':
push:
branches:
- main
paths:
- src/**
- .github/workflows/Release.yml
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm install
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
tag_name: v4.5.1
name: 4.5.1
body: '- 修复: Steam社区凭证无法更新(#34,#24)'
files: |-
dist/auto-task-v4-for-giveawaysu.user.js
dist/auto-task-v4.compatibility.user.js
dist/auto-task-v4.user.js
dist/auto-task-v4-for-giveawaysu.all.user.js
dist/auto-task-v4.compatibility.all.user.js
dist/auto-task-v4.all.user.js
token: ${{ github.TOKEN }}