Skip to content

Commit

Permalink
download
Browse files Browse the repository at this point in the history
  • Loading branch information
fad3t authored Oct 2, 2024
1 parent a78f18f commit 89e8207
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
echo "hello" >> Makefile.digests
echo "world" >> Makefile.digests
- name: upload digests
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4
with:
name: makefile-digests-${{ github.sha }}
path: Makefile.digests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: download artifacts
uses: actions/download-artifact@v4
with:
name: makefile-digests-${{ github.sha }}
- run: cat makefile-digests-${{ github.sha }}
- name: debug
env:
event: ${{ toJSON(github.event) }}
Expand Down

0 comments on commit 89e8207

Please sign in to comment.