We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66fb5b2 commit 02991fbCopy full SHA for 02991fb
1 file changed
.github/workflows/release.yml
@@ -43,13 +43,15 @@ jobs:
43
uses: actions/download-artifact@v4
44
with:
45
name: release-assets
46
- path: my_app/build/flatpak-host-remote-${{ github.ref }}.zip # Download artifacts to this path
47
-
+ path: my_app/build/flatpak-host-remote-${{ github.ref_name }}.zip # Download artifacts to this path
+ - name: Check release file existence
48
+ run: |
49
+ ls -a my_app/build/
50
- name: Create or Update Release and Upload Assets
51
uses: softprops/action-gh-release@v2
52
53
files: |
- my_app/build/flatpak-host-remote-${{ github.ref }}.zip
54
+ my_app/build/flatpak-host-remote-${{ github.ref_name }}.zip
55
draft: false # Set to true to create a draft release
56
prerelease: false # Set to true for a pre-release
57
env:
0 commit comments