Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Aug 12, 2023
1 parent f14a62b commit 6f0c705
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,23 @@ jobs:
JOB_STRATEGY_MATRIX=$(./.ci/get_build_matrix.sh unstable)
echo "::set-output name=job-strategy-matrix::$JOB_STRATEGY_MATRIX"
job:
establish_artifacts:
needs: generate-job-strategy-matrix
runs-on: ubuntu-20.04
steps:
- id: execute
run: |
mkdir -p /tmp/debs
echo "" > /tmp/debs/test.txt
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: debs
path: /tmp/debs/

job:
needs: establish_artifacts
runs-on: ubuntu-20.04
timeout-minutes: 360 # 6 hour timeout
strategy:
matrix:
Expand All @@ -42,7 +56,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: debs
path: /tmp/
path: /tmp/debs/
- id: execute
run: |
echo "starting with:"
Expand Down

0 comments on commit 6f0c705

Please sign in to comment.