This repository was archived by the owner on Dec 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +22
-27
lines changed
Expand file tree Collapse file tree 1 file changed +22
-27
lines changed Original file line number Diff line number Diff line change 11on :
2- release :
3- types : [published]
4-
5- permissions :
6- contents : write
7-
8- jobs :
9- zip-files :
10- runs-on : ubuntu-latest
11- steps :
12- - name : 📥 Checkout the repository
13- uses : actions/checkout@v3
14-
15- - name : 📦 Create zip file for notifier
16- run : |
17- cd "${{ github.workspace }}/apps"
18- zip -r notifier.zip notifier
19-
20- - name : 📤 Upload the zip file as a release asset
21- uses : svenstaro/upload-release-action@v2
22- with :
23- repo_token : ${{ secrets.GITHUB_TOKEN }}
24- file : " ${{ github.workspace }}/apps/notifier.zip"
25- asset_name : notifier.zip
26- tag : ${{ github.ref }}
27- overwrite : true
28-
2+ release :
3+ types : [published]
4+ permissions :
5+ contents : write
6+ jobs :
7+ zip-files :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : 📥 Checkout the repository
11+ uses : actions/checkout@v3
12+ - name : 📦 Create zip file for notifier
13+ run : |
14+ cd "${{ github.workspace }}/apps"
15+ zip -r notifier.zip notifier
16+ - name : 📤 Upload the zip file as a release asset
17+ uses : svenstaro/upload-release-action@v2
18+ with :
19+ repo_token : ${{ secrets.GITHUB_TOKEN }}
20+ file : " ${{ github.workspace }}/apps/notifier.zip"
21+ asset_name : notifier.zip
22+ tag : ${{ github.ref }}
23+ overwrite : true
You can’t perform that action at this time.
0 commit comments