Skip to content

Commit

Permalink
fixup artifacts for adding to release
Browse files Browse the repository at this point in the history
  • Loading branch information
GloriousEggroll committed Oct 19, 2024
1 parent 3101db9 commit 77339c5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-debian-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ jobs:
- name: Upload artifact
uses: actions/[email protected]
with:
name: Binary DEB files
name: Debian-12
path: results/
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cp -r . ~/rpmbuild/SOURCES/umu-launcher
rpmbuild -ba packaging/rpm/umu-launcher.spec
- name: Upload RPM
- name: Fedora-40
uses: actions/[email protected]
with:
name: umu-launcher-rpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-ubuntu-noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ jobs:
- name: Upload artifact
uses: actions/[email protected]
with:
name: Binary DEB files
name: Ubuntu-24
path: results/
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-zipapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ jobs:
- name: Upload artifact
uses: actions/[email protected]
with:
name: Binary Zipapp files
name: Zipapp
path: results/
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,45 +15,45 @@ jobs:
- name: Download Debian 12 Artifact
uses: actions/download-artifact@v4
with:
name: debian-12-artifact
path: ./artifacts/debian-12
name: Debian-12
path: ./artifacts/debian

- name: Download Fedora Artifact
- name: Download Ubuntu Noble Artifact
uses: actions/download-artifact@v4
with:
name: fedora-artifact
path: ./artifacts/fedora
name: Ubuntu-24
path: ./artifacts/ubuntu

- name: Download Ubuntu Noble Artifact
- name: Download Fedora Artifact
uses: actions/download-artifact@v4
with:
name: ubuntu-noble-artifact
path: ./artifacts/ubuntu-noble
name: Fedora-40
path: ./artifacts/fedora

- name: Download Zipapp Artifact
uses: actions/download-artifact@v4
with:
name: zipapp-artifact
name: Zipapp
path: ./artifacts/zipapp

- name: Upload Debian 12 Artifact to Release
uses: softprops/action-gh-release@v1
with:
files: ./artifacts/debian-12/*
files: ./artifacts/debian/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Fedora Artifact to Release
- name: Upload Ubuntu Noble Artifact to Release
uses: softprops/action-gh-release@v1
with:
files: ./artifacts/fedora/*
files: ./artifacts/ubuntu/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Ubuntu Noble Artifact to Release
- name: Upload Fedora Artifact to Release
uses: softprops/action-gh-release@v1
with:
files: ./artifacts/ubuntu-noble/*
files: ./artifacts/fedora/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 77339c5

Please sign in to comment.