Skip to content

Commit

Permalink
Merge pull request #12 from WalletConnect/fix/release_token
Browse files Browse the repository at this point in the history
fix: fixing use of `PRIVATE_SUBMODULE_ACCESS_TOKEN` instead of `RELEASE_PAT`
  • Loading branch information
geekbrother authored Oct 1, 2024
2 parents da51aee + 0e73c3c commit e174670
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-check-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand All @@ -54,7 +54,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-plan-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Configure AWS Credentials for Monitoring account
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Configure AWS Credentials for Monitoring account
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.RELEASE_PAT }}
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}
fetch-depth: 0

- name: Release
Expand Down

0 comments on commit e174670

Please sign in to comment.