From 8a685d2f0ee4ee3652791ff71e8a4c516b7fe121 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Mon, 30 Jun 2025 16:07:28 -0400 Subject: [PATCH] fix(workflows): fix release workflows --- .github/workflows/__call-update-flathub-repo.yml | 15 --------------- .github/workflows/__call-update-homebrew-repo.yml | 4 ---- .github/workflows/__call-update-pacman-repo.yml | 2 +- 3 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/__call-update-flathub-repo.yml b/.github/workflows/__call-update-flathub-repo.yml index 0998f632..3de311c5 100644 --- a/.github/workflows/__call-update-flathub-repo.yml +++ b/.github/workflows/__call-update-flathub-repo.yml @@ -159,18 +159,3 @@ jobs: delete-branch: true title: "chore: Update ${{ env.FLATHUB_PKG }} to ${{ github.event.release.tag_name }}" body: ${{ github.event.release.body }} - - - name: Automerge PR - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} - if: >- - steps.check-label.outputs.hasTopic == 'true' && - steps.check-release.outputs.isLatestRelease == 'true' && - fromJson(steps.download.outputs.downloaded_files)[0] - run: | - gh pr merge \ - --auto \ - --delete-branch \ - --repo "flathub/${{ env.FLATHUB_PKG }}" \ - --squash \ - "${{ steps.create-pr.outputs.pull-request-number }}" diff --git a/.github/workflows/__call-update-homebrew-repo.yml b/.github/workflows/__call-update-homebrew-repo.yml index c37d9687..2b66e59f 100644 --- a/.github/workflows/__call-update-homebrew-repo.yml +++ b/.github/workflows/__call-update-homebrew-repo.yml @@ -16,10 +16,6 @@ on: description: 'Username for git commits' required: true -concurrency: - group: "${{ github.workflow }}-${{ github.event.release.tag_name }}" - cancel-in-progress: true - jobs: update-homebrew-repo: runs-on: ubuntu-latest diff --git a/.github/workflows/__call-update-pacman-repo.yml b/.github/workflows/__call-update-pacman-repo.yml index b4ca61b0..6a172e27 100644 --- a/.github/workflows/__call-update-pacman-repo.yml +++ b/.github/workflows/__call-update-pacman-repo.yml @@ -84,7 +84,7 @@ jobs: steps.check-label.outputs.hasTopic == 'true' && steps.check-release.outputs.isLatestRelease == 'true' && fromJson(steps.download.outputs.downloaded_files)[0] - run: rm -f "pkgbuilds/${{ steps.prep.outputs.pkg_name }}" + run: rm -f "${{ fromJson(steps.download.outputs.downloaded_files)[0] }}" - name: Create/Update Pull Request id: create-pr