Skip to content

Commit a85a765

Browse files
committed
work around broken update to GitHub Action
Apparently v2.5 breaks uploading releases for a lot of projects. Other projects have seen success working around this issue by pinning the action to v2.4.2. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
1 parent a713f3b commit a85a765

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ jobs:
311311
312312
313313
- name: Upload to GitHub as release
314-
uses: softprops/action-gh-release@v2
314+
uses: softprops/action-gh-release@v2.4.2
315315
if: ${{ steps.tag.outputs.is_release == 'release' }}
316316
with:
317317
token: ${{ secrets.PAT_GITHUB_TOKEN }}
@@ -321,7 +321,7 @@ jobs:
321321

322322

323323
- name: Upload to GitHub as beta release
324-
uses: softprops/action-gh-release@v2
324+
uses: softprops/action-gh-release@v2.4.2
325325
if: ${{ steps.tag.outputs.is_release == 'beta' }}
326326
with:
327327
token: ${{ secrets.PAT_GITHUB_TOKEN }}
@@ -331,7 +331,7 @@ jobs:
331331
files: uploads/*
332332

333333
- name: Upload non-release artifacts
334-
uses: softprops/action-gh-release@v2
334+
uses: softprops/action-gh-release@v2.4.2
335335
if: ${{ steps.tag.outputs.is_release == 'test' }}
336336
with:
337337
token: ${{ secrets.PAT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)