Skip to content

Commit af50176

Browse files
fix(workflows): fix release workflows (#476)
1 parent ffef395 commit af50176

3 files changed

Lines changed: 1 addition & 20 deletions

File tree

.github/workflows/__call-update-flathub-repo.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -159,18 +159,3 @@ jobs:
159159
delete-branch: true
160160
title: "chore: Update ${{ env.FLATHUB_PKG }} to ${{ github.event.release.tag_name }}"
161161
body: ${{ github.event.release.body }}
162-
163-
- name: Automerge PR
164-
env:
165-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
166-
if: >-
167-
steps.check-label.outputs.hasTopic == 'true' &&
168-
steps.check-release.outputs.isLatestRelease == 'true' &&
169-
fromJson(steps.download.outputs.downloaded_files)[0]
170-
run: |
171-
gh pr merge \
172-
--auto \
173-
--delete-branch \
174-
--repo "flathub/${{ env.FLATHUB_PKG }}" \
175-
--squash \
176-
"${{ steps.create-pr.outputs.pull-request-number }}"

.github/workflows/__call-update-homebrew-repo.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ on:
1616
description: 'Username for git commits'
1717
required: true
1818

19-
concurrency:
20-
group: "${{ github.workflow }}-${{ github.event.release.tag_name }}"
21-
cancel-in-progress: true
22-
2319
jobs:
2420
update-homebrew-repo:
2521
runs-on: ubuntu-latest

.github/workflows/__call-update-pacman-repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
steps.check-label.outputs.hasTopic == 'true' &&
8585
steps.check-release.outputs.isLatestRelease == 'true' &&
8686
fromJson(steps.download.outputs.downloaded_files)[0]
87-
run: rm -f "pkgbuilds/${{ steps.prep.outputs.pkg_name }}"
87+
run: rm -f "${{ fromJson(steps.download.outputs.downloaded_files)[0] }}"
8888

8989
- name: Create/Update Pull Request
9090
id: create-pr

0 commit comments

Comments
 (0)