Skip to content

Commit

Permalink
artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
rshunim committed Sep 26, 2023
1 parent 87357fc commit 702e7f7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,22 @@ jobs:
run: ./docker/build_docker.sh

- name: Step 1 - Create a temporary artifact downloads folder
run: mkdir downloads
run: mkdir artifacts

- name: step 2 - Add artifacts to publish to the temp folder
run: |
cd downloads
cd artifacts
echo 'alpha' > alpha.html
echo 'bravo' > bravo.html
echo 'charlie' > charlie.html
cd ..
- name: Step 3 - Use the Upload Artifact GitHub Action
uses: actions/upload-artifact@v2
with:
name: assets-for-download
path: downloads
uses: actions/upload-artifact@v3
with:
name: artifacts
path: artifacts


# no_output_timeout: 60m
# - store_artifacts:
Expand Down

0 comments on commit 702e7f7

Please sign in to comment.