Skip to content

Commit

Permalink
add artifact extraction to deploy-test
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jul 22, 2024
1 parent a2cce42 commit b9084f3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,13 @@ jobs:
- name: Create dist directory
run: mkdir -p dist

- name: Extract tar.gz files
run: |
for artifact in dist/*; do
tar -xzf "$artifact" -C dist
rm "$artifact"
done
- name: Move files from subdirectories
run: |
for subdirectory in dist/*/; do
Expand Down

0 comments on commit b9084f3

Please sign in to comment.