1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-09 10:22:46 +03:00

We have to explicitly specify github-token even though it is the default for this to work in theory

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2024-11-21 15:59:17 +00:00
parent c87692d0aa
commit ae2ae483db
2 changed files with 3 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ jobs:
- name: 📥 Download artifact - name: 📥 Download artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} run-id: ${{ github.event.workflow_run.id }}
name: docs name: docs
path: docs path: docs

View File

@@ -46,6 +46,7 @@ jobs:
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
if: ${{ !inputs.sharded }} if: ${{ !inputs.sharded }}
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} run-id: ${{ github.event.workflow_run.id }}
name: coverage name: coverage
path: coverage path: coverage
@@ -53,6 +54,7 @@ jobs:
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
if: inputs.sharded if: inputs.sharded
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} run-id: ${{ github.event.workflow_run.id }}
pattern: coverage-* pattern: coverage-*
path: coverage path: coverage