Skip to content

Commit

Permalink
fix: more token fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed Sep 20, 2024
1 parent 177ac95 commit 43d3dc6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cid-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
SENTRY_TOKEN: ${{secrets.SENTRY_TOKEN}}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{secrets.CF_TOKEN }}
workingDirectory: 'packages/cid-verifier'
environment: 'staging'
changelog:
Expand Down Expand Up @@ -109,6 +109,6 @@ jobs:
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{ secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{ secrets.CF_TOKEN }}
workingDirectory: 'packages/cid-verifier'
environment: 'production'
2 changes: 1 addition & 1 deletion .github/workflows/cron-denylist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
- run: pnpm install
- name: Run job
env:
CF_API_TOKEN: ${{ secrets.CF_GATEWAY_TOKEN }}
CF_API_TOKEN: ${{ secrets.CF_TOKEN }}
run: node packages/denylist/scripts/cli.js denylist sync --env ${{ matrix.env }}
2 changes: 1 addition & 1 deletion .github/workflows/denylist-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
- run: pnpm install
- name: Run job
env:
CF_API_TOKEN: ${{ secrets.CF_GATEWAY_TOKEN }}
CF_API_TOKEN: ${{ secrets.CF_TOKEN }}
run: node packages/denylist/scripts/cli.js denylist update-remote ${{ toJSON(github.event.inputs.url) }} --env ${{ matrix.env }} --operation ${{ github.event.inputs.operation }}
4 changes: 2 additions & 2 deletions .github/workflows/denylist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
SENTRY_TOKEN: ${{secrets.SENTRY_TOKEN}}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{secrets.CF_TOKEN }}
workingDirectory: 'packages/denylist'
environment: 'staging'
changelog:
Expand Down Expand Up @@ -103,6 +103,6 @@ jobs:
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{ secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{ secrets.CF_TOKEN }}
workingDirectory: 'packages/denylist'
environment: 'production'
4 changes: 2 additions & 2 deletions .github/workflows/edge-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
SENTRY_TOKEN: ${{secrets.SENTRY_TOKEN}}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{secrets.CF_TOKEN }}
workingDirectory: 'packages/edge-gateway'
environment: 'staging'
changelog:
Expand Down Expand Up @@ -109,6 +109,6 @@ jobs:
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_UPLOAD: ${{ secrets.SENTRY_UPLOAD }}
with:
apiToken: ${{ secrets.CF_GATEWAY_TOKEN }}
apiToken: ${{ secrets.CF_TOKEN }}
workingDirectory: 'packages/edge-gateway'
environment: 'production'
2 changes: 1 addition & 1 deletion .github/workflows/ipfs-gateway-race.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- run: pnpm install
- name: NPM Publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
cd packages/ipfs-gateway-race/dist
npm publish --access=public

0 comments on commit 43d3dc6

Please sign in to comment.