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 4cc571f commit 83c1a54Copy full SHA for 83c1a54
.github/workflows/release.yml
@@ -1,9 +1,12 @@
1
name: Release New Version
2
3
+# on:
4
+# push:
5
+# tags:
6
+# - 'v*'
7
+
8
on:
- push:
- tags:
- - 'v*'
9
+ pull_request:
10
11
env:
12
RELEASE_VERSION: ''
@@ -28,9 +31,9 @@ jobs:
28
31
# flit publish
29
32
- name: Create Release Notes
30
33
run:
- echo "Changelog for release ${env.RELEASE_NOTE_VERSION}:"
- cz changelog --file-name ${env.RELEASE_NOTES_BODY_FILE} ${env.RELEASE_NOTE_VERSION}
- cat ${env.RELEASE_NOTES_BODY_FILE}
34
+ echo "Changelog for release ${RELEASE_NOTE_VERSION}:"
35
+ cz changelog --file-name ${RELEASE_NOTES_BODY_FILE} ${RELEASE_NOTE_VERSION}
36
+ cat ${RELEASE_NOTES_BODY_FILE}
37
- name: Create Github Release
38
uses: softprops/action-gh-release@v1
39
with:
0 commit comments