Skip to content

Commit a111968

Browse files
committed
[ci][resume] attempt with just normal github token
1 parent fb65d2d commit a111968

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/hosting.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Checkout Repo for Resume
1919
uses: actions/checkout@v3
2020
with:
21-
token: ${{ secrets.PAT }}
21+
token: ${{ secrets.GITHUB_TOKEN }}
2222

2323
# Step to compile the LaTeX resume
2424
- name: Compile Resume LaTeX to PDF
@@ -46,7 +46,7 @@ jobs:
4646
id: get-sha
4747
uses: actions/github-script@v6
4848
with:
49-
github-token: ${{ secrets.PAT }}
49+
github-token: ${{ secrets.GITHUB_TOKEN }}
5050
script: |
5151
const fs = require('fs');
5252
const path = require('path');
@@ -64,7 +64,7 @@ jobs:
6464
- name: Upload Resume.pdf file to repository
6565
uses: actions/github-script@v6
6666
with:
67-
github-token: ${{ secrets.PAT }}
67+
github-token: ${{ secrets.GITHUB_TOKEN }}
6868
script: |
6969
const fs = require('fs');
7070
const path = require('path');
@@ -91,7 +91,7 @@ jobs:
9191
- name: Checkout Repo
9292
uses: actions/checkout@v3
9393
with:
94-
token: ${{ secrets.PAT }}
94+
token: ${{ secrets.GITHUB_TOKEN }}
9595

9696
# Step to install Node.js and Yarn
9797
- name: Install Node

0 commit comments

Comments
 (0)