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 3107a28 commit 09b289fCopy full SHA for 09b289f
1 file changed
.github/workflows/vartest.yml
@@ -24,12 +24,12 @@ jobs:
24
run: |
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"
+ echo "previous_run_id=$PREVIOUS_RUN_ID" >> "$GITHUB_ENV"
28
- name: Download test artifact
29
uses: actions/download-artifact@v8
30
with:
31
skip-decompress: true
32
- run-id: 24433840587
+ run-id: $previous_run_id
33
- name: Display structure of downloaded files
34
run: ls -R
35
- name: Create test file
0 commit comments