Skip to content
This repository was archived by the owner on Dec 29, 2025. It is now read-only.

Commit cca6bc5

Browse files
authored
Update zip_creation.yml
1 parent 3131334 commit cca6bc5

File tree

1 file changed

+22
-27
lines changed

1 file changed

+22
-27
lines changed

.github/workflows/zip_creation.yml

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
on:
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

0 commit comments

Comments
 (0)