We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b7a308 commit fa16e09Copy full SHA for fa16e09
.github/workflows/build-appimage.yml
@@ -26,8 +26,16 @@ jobs:
26
- name: Get changelog
27
run: python3 .github/scripts/changelog.py
28
29
- - name: Release
+ - name: Stable release
30
uses: softprops/action-gh-release@v2.2.1
31
+ if: startsWith(github.ref, 'refs/tags/')
32
with:
33
body_path: "CHANGELOG.html"
- files: ./nottodbox*.AppImage*
34
+ files: ./nottodbox*.AppImage*
35
+
36
+ - name: Nightly release
37
+ uses: softprops/action-gh-release@v2.2.1
38
+ with:
39
+ body_path: "CHANGELOG.html"
40
41
+ tag_name: nightly
0 commit comments