Skip to content

Commit 02991fb

Browse files
committed
Try #3
Signed-off-by: Ryan Brue <ryanbrue.dev@gmail.com>
1 parent 66fb5b2 commit 02991fb

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,15 @@ jobs:
4343
uses: actions/download-artifact@v4
4444
with:
4545
name: release-assets
46-
path: my_app/build/flatpak-host-remote-${{ github.ref }}.zip # Download artifacts to this path
47-
46+
path: my_app/build/flatpak-host-remote-${{ github.ref_name }}.zip # Download artifacts to this path
47+
- name: Check release file existence
48+
run: |
49+
ls -a my_app/build/
4850
- name: Create or Update Release and Upload Assets
4951
uses: softprops/action-gh-release@v2
5052
with:
5153
files: |
52-
my_app/build/flatpak-host-remote-${{ github.ref }}.zip
54+
my_app/build/flatpak-host-remote-${{ github.ref_name }}.zip
5355
draft: false # Set to true to create a draft release
5456
prerelease: false # Set to true for a pre-release
5557
env:

0 commit comments

Comments
 (0)