Skip to content

Commit

Permalink
Merge pull request #809 from Murmele/updateUploadArtifact
Browse files Browse the repository at this point in the history
update upload artifact to v4 because v1 and v2 are deprecated
  • Loading branch information
Murmele authored Nov 4, 2024
2 parents 28fa70a + 6d9b177 commit b5f3fb0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
branch: ${{ steps.flatpak_release_branch.outputs.value }}

- name: Publish build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: Gittyup.flatpak
name: GittyupFlatpak
Expand Down Expand Up @@ -303,14 +303,15 @@ jobs:
- name: Publish build artifacts
if: matrix.env.pack && !matrix.qt.check_only
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: build/release/pack/Gittyup-*
name: Gittyup ${{ matrix.env.name }}

# Publish only once!
- name: Publish version file
if: matrix.env.pack && !matrix.qt.check_only
uses: actions/upload-artifact@v3
if: matrix.env.pack && !matrix.qt.check_only && matrix.env.name == 'win64'
uses: actions/upload-artifact@v4
with:
path: build/release/Version.txt
name: Gittyup-VERSION
Expand Down Expand Up @@ -366,7 +367,7 @@ jobs:
- name: Publish Appimage
if: matrix.env.ninja_platform == 'linux' && !matrix.qt.check_only
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: build/release/*.AppImage
name: GittyupAppImage
Expand Down

0 comments on commit b5f3fb0

Please sign in to comment.