Skip to content

Commit bdec31a

Browse files
committed
fix: Use default GitHub token instead of expired PAT
1 parent adf569c commit bdec31a

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/deploy.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,31 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24+
- name: Install Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
cache: npm
28+
29+
- name: Install dependencies
30+
run: npm i
31+
2432
- name: Build
2533
env:
2634
RV_API_URL: ${{ vars.RV_API_URL }}
2735
RV_GOOGLE_TAG_MANAGER_ID: ${{ vars.RV_GOOGLE_TAG_MANAGER_ID }}
2836
RV_DMCA_GUID: ${{ vars.RV_DMCA_GUID }}
29-
run: |
30-
npm i
31-
npm run build
37+
run: npm run build
3238

3339
- name: Deploy
40+
id: deploy
3441
uses: cloudflare/wrangler-action@v3
3542
with:
3643
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
3744
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
3845
command: pages deploy public --project-name=revanced-website
39-
id: deploy
4046

4147
- name: Comment deployment URL
4248
if: ${{ github.event_name == 'pull_request' }}
4349
uses: thollander/actions-comment-pull-request@v2
4450
with:
45-
GITHUB_TOKEN: ${{ secrets.PULL_REQUESTS_WRITE }}
46-
message: Deployed at ${{ steps.deploy.outputs.pages-deployment-alias-url }}.
51+
message: Deployed at ${{ steps.deploy.outputs.deployment-url }}.

0 commit comments

Comments
 (0)