Skip to content

Commit 169b768

Browse files
author
Finbarr Brady
committed
updates
1 parent 5d5af74 commit 169b768

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docker-build-shared.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v4
5050
with:
5151
ref: ${{ github.ref }}
52-
token: ${{ secrets.GITHUB_TOKEN }}
52+
token: ${{ secrets.token }}
5353
fetch-depth: 0
5454
clean: true
5555
fetch-tags: true
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/checkout@v4
7171
with:
7272
ref: ${{ github.ref }}
73-
token: ${{ secrets.GITHUB_TOKEN }}
73+
token: ${{ secrets.token }}
7474
fetch-depth: 0
7575
clean: true
7676
fetch-tags: true
@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions/checkout@v4
109109
with:
110110
ref: ${{ github.ref }}
111-
token: ${{ secrets.GITHUB_TOKEN }}
111+
token: ${{ secrets.token }}
112112
fetch-depth: 0
113113
clean: true
114114
fetch-tags: true
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
registry: ${{ env.REGISTRY }}
123123
username: ${{ github.repository_owner }}
124-
password: ${{ secrets.GITHUB_TOKEN }}
124+
password: ${{ secrets.token }}
125125

126126
- name: Base - Build and Push
127127
if: ${{ inputs.build_base || inputs.build_all }}

.github/workflows/release-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v4
4747
with:
4848
fetch-depth: 0
49-
token: ${{ secrets.GITHUB_TOKEN }}
49+
token: ${{ secrets.RELEASE_TOKEN }}
5050

5151
- name: Setup Node.js
5252
uses: actions/setup-node@v4
@@ -70,7 +70,7 @@ jobs:
7070
- name: Semantic Release
7171
id: semantic
7272
env:
73-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
7474
run: |
7575
set -e
7676
@@ -110,4 +110,4 @@ jobs:
110110
skip_release_main_build: ${{ github.event_name == 'workflow_dispatch' && inputs.skip_release_main_build || false }}
111111
release_as_latest: ${{ github.event_name == 'workflow_dispatch' && inputs.release_as_latest || needs.semantic-release.outputs.new_release_published == 'true' }}
112112
secrets:
113-
token: ${{ secrets.GITHUB_TOKEN }}
113+
token: ${{ secrets.RELEASE_TOKEN }}

0 commit comments

Comments
 (0)