Skip to content

Commit

Permalink
Fix tar command for building release artifact for web (#250)
Browse files Browse the repository at this point in the history
* Fix tar command for building web dist artifact

* Include dist as top-level directory in web tarball
  • Loading branch information
TylerHendrickson authored May 3, 2024
1 parent 56e5896 commit e5de757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
- name: Upload release assets
run: |
WEB_TAR_FILE="web-dist.tar.gz"
tar -czf "$WEB_TAR_FILE" -C $(dirname "$WEB_DIST_PATH")
tar -czf "$WEB_TAR_FILE" -C $(dirname "$WEB_DIST_PATH") ./dist
gh release upload --clobber "$RELEASE_TAG" \
"$WEB_TAR_FILE#Client web bundle" \
"$PROVENANCE_FILE_CONSOLE#Console Docker image provenance attestations" \
Expand Down

0 comments on commit e5de757

Please sign in to comment.