We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b289f commit d3bc40dCopy full SHA for d3bc40d
1 file changed
.github/workflows/vartest.yml
@@ -25,10 +25,13 @@ jobs:
25
# Fetches the ID of the last completed run for the current workflow
26
PREVIOUS_RUN_ID=$(gh run list --workflow "${{ github.workflow }}" --status completed --limit 1 --json databaseId --jq '.[0].databaseId')
27
echo "previous_run_id=$PREVIOUS_RUN_ID" >> "$GITHUB_ENV"
28
+ - name: Test previous run id
29
+ run: echo "$previous_run_id"
30
- name: Download test artifact
31
uses: actions/download-artifact@v8
32
with:
33
skip-decompress: true
34
+ github-token: ${{ secrets.GITHUB_TOKEN }}
35
run-id: $previous_run_id
36
- name: Display structure of downloaded files
37
run: ls -R
0 commit comments