Skip to content

Test downloading artifacts #14

Test downloading artifacts

Test downloading artifacts #14

Workflow file for this run

name: "Test downloading artifacts"
on:
workflow_dispatch:
jobs:
generate-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
cd "$GITHUB_WORKSPACE"
mkdir ./expired-d
touch ./expired-d/test-1.txt
touch ./expired-d/test-2.txt
- uses: actions/upload-artifact@v3
with:
name: E_TEST_01
path: |
expired-d/test-1.txt
- uses: actions/upload-artifact@v3
with:
name: E_TEST_02
path: |
expired-d/test-2.txt
download-artifacts:
env:
GH_TOKEN: ${{ github.token }}
needs: generate-artifacts
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/rtm_image:latest
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
gh run download ${{ github.run_id }} -n "E_TEST_01"