Skip to content

Commit

Permalink
fix: update GITHUB_TOKEN in homebrew pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardocesb committed Mar 25, 2024
1 parent 0c78f67 commit 4a39ae3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-stable-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{secrets.AWS_ROLE_NAME }}
role-to-assume: ${{ secrets.AWS_ROLE_NAME }}
role-session-name: github-actions-from-toolbelt
aws-region: us-east-1
- name: Deploy on AWS
Expand All @@ -38,14 +38,14 @@ jobs:
- name: Get deploy version
id: deployed-version
run: echo '::set-output name=SOURCE_TAG::$(curl https://api.github.com/repos/vtex/toolbelt/releases/latest -s | jq .tag_name -r)'
- name: Trigger slack notification bot [Success]
run: 'curl --connect-timeout 30 --retry 3 --retry-delay 120 --data "status=success&user=${{ github.actor }}&platform=AWS-S3&version=${{ steps.deployed-version.outputs.SOURCE_TAG }}" --header "token: ${{ secrets.TOOLBELT_NOTIFICATION_KEY }}" https://master--vtex.myvtex.com/_v/public/toolbelt-notification/status'
- name: Trigger publish-stable-brew
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.REPO_GHA_PAT }}
token: ${{ secrets.GITHUB_TOKEN }}
repository: vtex/homebrew-vtex
event-type: publish-stable-brew
- name: Trigger slack notification bot [Success]
run: 'curl --connect-timeout 30 --retry 3 --retry-delay 120 --data "status=success&user=${{ github.actor }}&platform=AWS-S3&version=${{ steps.deployed-version.outputs.SOURCE_TAG }}" --header "token: ${{ secrets.TOOLBELT_NOTIFICATION_KEY }}" https://master--vtex.myvtex.com/_v/public/toolbelt-notification/status'
publish-failed:
runs-on: ubuntu-latest
needs: [aws-publish]
Expand Down

0 comments on commit 4a39ae3

Please sign in to comment.