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 8b867c6 commit f7cacaeCopy full SHA for f7cacae
.github/workflows/onTag_zip_manual_as_asset.yml renamed to .github/workflows/onRelease_zip_manual_as_asset.yml
@@ -1,9 +1,12 @@
1
-name: Zip Manual as Asset on Tag
+name: Zip Manual as Asset on Release
2
3
on:
4
- push:
5
- tags:
6
- - '*'
+ # push:
+ # tags:
+ # - '*'
7
+
8
+ release:
9
+ types: [published]
10
11
jobs:
12
build:
@@ -51,8 +54,7 @@ jobs:
51
54
asset_name: nppUserManual.zip
52
55
tag: ${{ github.ref }}
53
56
overwrite: true
- body: |
- ${{ github.event.head_commit.message }}
57
+ body: ${{ github.event.release.body }}
58
59
# `body: | ...` derived from the following sources, in order to duplicate the original commit message in the artifact upload
60
# - https://github.com/svenstaro/upload-release-action
0 commit comments