Skip to content

Commit

Permalink
Tar our image because we're given a folder instead of a single file
Browse files Browse the repository at this point in the history
  • Loading branch information
Guysnacho committed Oct 18, 2024
1 parent b9457d0 commit d9c0569
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/bundle_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,16 @@ jobs:
run: |
stat ./alpine_storefront
ls -l
sudo cp -r ./alpine_storefront /home/
ls -l /home/
tar -zcvf alpine_storefront.tar.gz ./alpine_storefront
sudo cp ./alpine_storefront.tar.gz /home/
ls -l /home/alpine_storefront
continue-on-error: true
- name: Upload Artifact
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: storefront_image
path: /home/alpine_storefront
path: /home/alpine_storefront.tar.gz
overwrite: true
if-no-files-found: error

Expand Down

0 comments on commit d9c0569

Please sign in to comment.