Skip to content

Commit 387cc1d

Browse files
committed
fix: fetching the github token from the right location
1 parent 06ceb7b commit 387cc1d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
version: 3.x
5252
env:
53-
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5454

5555
- name: task validate
5656
run: task validate --verbose

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
version: 3.x
6565
env:
66-
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767

6868
- name: Read and validate VERSION
6969
id: version

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
version: 3.x
6262
env:
63-
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
63+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6464

6565
- name: Read and validate VERSION
6666
id: version

0 commit comments

Comments
 (0)