修复:Twitter/X域名更改导致部分功能不可用(#18); … #71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.4.0 | |
name: 4.4.0 | |
body: >- | |
- 修复:Twitter/X域名更改导致部分功能不可用(#18) | |
- 修复:配置跳过Discord任务时无效(#19) | |
- 优化:Twitter/X凭证获取方式(*需TamperMonkey >= 5.2.0或TamperMonkey >= | |
5.2.6196) | |
- 优化:Youtube凭证获取方式(*需TamperMonkey >= 5.2.0或TamperMonkey >= 5.2.6196) | |
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 }} |