Skip to content

Commit

Permalink
Change bucket name.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterp committed Nov 13, 2020
1 parent d074e8f commit 2b18246
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_pr_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
aws configure set aws_access_key_id $aws_key_id
aws configure set aws_secret_access_key $aws_secret_access_key
aws configure set default.region us-east-1
aws s3 cp --recursive ./bin/ s3://rw-pr/${{ github.event.number }}/
aws s3 cp --recursive ./bin/ s3://rw-pr.redwoodjs.com/${{ github.event.number }}/
- name: Create comment msg
id: comment_msg
run: |
msg="📦 Packages for this PR can be downloaded from%0A"
for p in bin/*; do
msg+="https://rw-pr.s3.amazonaws.com/${{ github.event.number }}/${p#bin/}%0A"
msg+="https://rw-pr.redwoodjs.com.s3.amazonaws.com/${{ github.event.number }}/${p#bin/}%0A"
done
msg+="%0AInstall locally with yarn, e.g. \`yarn workspace web add <url>\`"
echo "::set-output name=msg::$msg"
Expand Down

0 comments on commit 2b18246

Please sign in to comment.