Skip to content

Commit

Permalink
Merge branch 'main' into CLI-1328
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Apr 22, 2024
2 parents d935d0b + 84151bd commit b9d8b0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/upload-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ jobs:
run: unzip acli.phar.zip
- name: Store artifact in S3
run: |
aws s3 cp acli.phar s3://acquia-cli/build/$GITHUB_SHA/
aws s3 cp acli.phar s3://acquia-cli/build/pr/${{ steps.pr.outputs.result }}
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: us-east-1
- name: Comment on PR
run: |
GITHUB_PR=${{ steps.pr.outputs.result }}
COMMENT="Try the dev build for this PR: https://acquia-cli.s3.amazonaws.com/build/$GITHUB_SHA/acli.phar
COMMENT="Try the dev build for this PR: https://acquia-cli.s3.amazonaws.com/build/pr/${{ steps.pr.outputs.result }}/acli.phar
\`\`\`
curl -OL https://acquia-cli.s3.amazonaws.com/build/$GITHUB_SHA/acli.phar
curl -OL https://acquia-cli.s3.amazonaws.com/build/pr/${{ steps.pr.outputs.result }}/acli.phar
chmod +x acli.phar
\`\`\`"
COMMENT_URL="https://github.com/$GITHUB_REPOSITORY/pull/$GITHUB_PR"
Expand Down

0 comments on commit b9d8b0f

Please sign in to comment.