2 Commits

Author SHA1 Message Date
kdusek
2b7079612e Fix artifact name to match version without v
Some checks failed
build / build-linux (push) Successful in 15s
release / build-deb (push) Failing after 49s
release / release (push) Has been skipped
2025-12-07 23:49:49 +01:00
kdusek
3d51013e48 Remove duplicate release job
Some checks failed
build / build-linux (push) Successful in 16s
release / build-deb (push) Successful in 1m2s
release / release (push) Failing after 16s
2025-12-07 23:43:34 +01:00

View File

@@ -65,17 +65,8 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gotify-tray_${{github.ref_name}}_amd64.deb
path: dist/gotify-tray_${{github.ref_name}}_amd64.deb
release:
runs-on: ubuntu-latest
needs: [build-deb]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v2
with:
name: gotify-tray_${{github.ref_name}}_amd64.deb
path: dist/gotify-tray_${{github.ref_name}}_amd64.deb
name: gotify-tray_${{github.ref_name#v}}_amd64.deb
path: dist/gotify-tray_${{github.ref_name#v}}_amd64.deb
release:
runs-on: ubuntu-latest
@@ -84,11 +75,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v2
with:
name: gotify-tray_${{github.ref_name}}_amd64.deb
name: gotify-tray_${{github.ref_name#v}}_amd64.deb
- name: Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITEA_TOKEN }}"
prerelease: false
files: |
gotify-tray_${{github.ref_name}}_amd64.deb
gotify-tray_${{github.ref_name#v}}_amd64.deb