We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b264b5 commit 30f2ec2Copy full SHA for 30f2ec2
1 file changed
.github/workflows/DeployFacebook.yml
@@ -4,8 +4,10 @@ on:
4
push:
5
branches:
6
- master # 监听分支提交
7
- # paths:
8
- # - "facebook/**"
+ tags:
+ - v*
9
+ paths:
10
+ - "facebook/**"
11
workflow_dispatch:
12
13
@@ -48,3 +50,16 @@ jobs:
48
50
port: ${{ secrets.FTP_PORT }}
49
51
local-dir: release/
52
server-dir: /UpData/FBfans/
53
+ security:
54
+ exclude: |
55
+ release/*.json
56
+
57
+ - name: Upload Release Asset
58
+ uses: actions/upload-release-asset@v1.0.1
59
+ env:
60
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
+ with:
62
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
63
+ asset_path: release/FBreptilever.zip
64
+ asset_name: FBreptilever.zip
65
+ asset_content_type: application/zip
0 commit comments