Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Aug 12, 2023
1 parent c3ae9a2 commit d605d30
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,18 @@ jobs:
job: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }}
max-parallel: 1 # Run jobs serially
steps:
- run: echo "This is job named ${{ matrix.job }}"
- name: Load artifacts
uses: actions/download-artifact@v3
with:
name: debs
path: /tmp/debs
- run: |
echo "starting with:"
echo "cat /tmp/debs/test.txt"
echo ""
echo "This is job named ${{ matrix.job }} > /tmp/debs/test.txt"
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: debs
path: /tmp/debs

0 comments on commit d605d30

Please sign in to comment.