Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
GloriousEggroll committed Oct 19, 2024
1 parent 5190935 commit 61ff65e
Showing 1 changed file with 10 additions and 25 deletions.
35 changes: 10 additions & 25 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: Release

on:
release:
types: [published]
workflow_run:
workflows:
- UMU Deb Build - Debian 12
- UMU Deb Build - Noble (Ubuntu 24.04 LTS)
- UMU RPM Build - Fedora/Nobara
- UMU Zipapp Build
types:
- completed

jobs:
gather-and-upload-artifacts:
Expand Down Expand Up @@ -36,30 +42,9 @@ jobs:
name: Zipapp
path: ./artifacts/zipapp

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

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

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

- name: Upload Zipapp Artifact to Release
uses: softprops/action-gh-release@v1
with:
files: ./artifacts/zipapp/*
files: ./artifacts/**/* # Upload all artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 61ff65e

Please sign in to comment.