Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 0d2253e

Browse files
committed
Fix issues caused by the artifacts v4 upgrade
Signed-off-by: Michael Telatynski <[email protected]>
1 parent e3d5b4f commit 0d2253e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/end-to-end-tests.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ on:
1313
type: string
1414
required: true
1515
description: "The name of the github repository to check out and build."
16+
secrets:
17+
ELEMENT_BOT_TOKEN:
18+
required: true
1619

1720
concurrency:
1821
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }}
@@ -54,6 +57,7 @@ jobs:
5457
- name: 📥 Download artifact
5558
uses: actions/download-artifact@v4
5659
with:
60+
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
5761
run-id: ${{ github.event.workflow_run.id }}
5862
name: previewbuild
5963
path: webapp

.github/workflows/netlify.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ jobs:
2424
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
2525
Exercise caution. Use test accounts.
2626
27-
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
28-
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
2927
- name: 📥 Download artifact
3028
uses: actions/download-artifact@v4
3129
with:
30+
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
3231
run-id: ${{ github.event.workflow_run.id }}
3332
name: previewbuild
3433
path: webapp

0 commit comments

Comments
 (0)