Skip to content
Open

Main #11

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@ jobs:
with:
name: hello-artifact
path: hello.txt

download:
needs: build
runs-on: ubuntu-latest

steps:
- name: Download the text file
uses: actions/download-artifact@v4
with:
name: hello-artifact
path: ./artifacts

- name: Display the content
run: cat ./artifacts/hello.txt