We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d6bb6 commit 22bb34dCopy full SHA for 22bb34d
.github/workflows/release-zip.yml
@@ -2,7 +2,9 @@ name: Release Zip
2
3
on:
4
release:
5
- types: [published]
+ types: [created]
6
+
7
8
9
jobs:
10
build-and-attach:
@@ -37,7 +39,7 @@ jobs:
37
39
- name: Create release archive
38
40
run: |
41
mkdir -p dist-artifacts
- pnpm bestzip dist-artifacts/logly-${{ github.ref_name }}.zip \
42
+ pnpm bestzip dist-artifacts/logly-${{ github.ref_name }}-${{ github.run_number }}.zip \
43
*.hbs \
44
partials \
45
assets/dist \
@@ -49,6 +51,6 @@ jobs:
49
51
- name: Upload release asset
50
52
uses: softprops/action-gh-release@v2.5.0
53
with:
- files: dist-artifacts/logly-${{ github.ref_name }}.zip
54
+ files: dist-artifacts/logly-${{ github.ref_name }}-${{ github.run_number }}.zip
55
env:
56
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments