Skip to content

Commit

Permalink
fix(circleci): use correct zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelMP authored Nov 19, 2020
1 parent 36043c9 commit 4448d33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
name: Build Package
command: sh packlink-build.sh ${CIRCLE_TAG}
- run:
name: Publish package to cdn production
name: Publish package to production cdn
command: |
gsutil cp artifact.zip gs://${PROD_CDN_URL}/modules/shopware/statics/latest.zip
gsutil cp Packlink.zip gs://${PROD_CDN_URL}/modules/shopware/statics/latest.zip
gsutil acl ch -u AllUsers:R gs://${PROD_CDN_URL}/modules/shopware/statics/latest.zip
gsutil cp artifact.zip gs://${PROD_CDN_URL}/modules/shopware/statics/${CIRCLE_TAG}.zip
gsutil cp Packlink.zip gs://${PROD_CDN_URL}/modules/shopware/statics/${CIRCLE_TAG}.zip
gsutil acl ch -u AllUsers:R gs://${PROD_CDN_URL}/modules/shopware/statics/${CIRCLE_TAG}.zip
- slack/notify:
color: "#00FF00"
Expand Down
2 changes: 1 addition & 1 deletion packlink-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ zip -r -q Packlink.zip Packlink/
cd ../

cp build/Packlink.zip Packlink.zip
rm build/Packlink.zip
rm build/Packlink.zip

0 comments on commit 4448d33

Please sign in to comment.