Skip to content

Commit

Permalink
build: rename flatpak artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
alichtman committed Feb 9, 2025
1 parent 379d301 commit 450bb28
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
path: |
release/build/*.exe
release/build/*.msi
if-no-files-found: error

build-linux-appimage:
runs-on: ubuntu-latest
Expand All @@ -76,8 +77,9 @@ jobs:
- name: Upload Linux artifacts
uses: actions/upload-artifact@v4
with:
name: linux-artifacts
name: linux-appimage-artifacts
path: release/build/*.AppImage
if-no-files-found: error

build-linux-flatpak:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -144,7 +146,8 @@ jobs:
- name: Upload Flatpak bundle
uses: actions/upload-artifact@v4
with:
name: flatpak-bundle
if-no-files-found: error
name: linux-flatpak-artifact
path: deadbolt.flatpak

create-release:
Expand All @@ -159,10 +162,12 @@ jobs:
- name: Create Release
uses: softprops/[email protected]
with:
draft: true
fail_on_unmatched_files: true
files: |
mac-artifacts/*
windows-artifacts/*
linux-artifacts/*
flatpak-bundle
linux-appimage-artifacts/*
linux-flatpak-artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 450bb28

Please sign in to comment.