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 19579e8 commit 543ba18
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,22 @@ jobs:
run: ./docker/verify_dependabot.sh
- name: Build Docker Images
run: ./docker/build_docker.sh

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

- name: step 2 - Add artifacts to publish to the temp folder
run: |
cd downloads
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

# no_output_timeout: 60m
# - store_artifacts:
Expand Down

0 comments on commit 543ba18

Please sign in to comment.