Skip to content

Commit c18d6e0

Browse files
committed
Add token to env
1 parent 5cab7b8 commit c18d6e0

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name: Linter check
66
env:
77
GO111MODULE: on
88
GOPRIVATE: github.com/sprintertech
9+
TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
910

1011
jobs:
1112
linter-check:

.github/workflows/publish-latest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
GOPRIVATE: github.com/sprintertech
1515
ORG: 'sprintertech'
1616
REGISTRY: 'ghcr.io'
17+
TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
1718

1819
jobs:
1920
build-and-push:

.github/workflows/publish-tagged.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ env:
1414
REGISTRY: 'ghcr.io'
1515
GO111MODULE: on
1616
GOPRIVATE: github.com/sprintertech
17+
TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
18+
1719

1820
jobs:
1921
build-and-push:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
env:
99
GO111MODULE: on
1010
GOPRIVATE: github.com/sprintertech
11+
TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
1112

1213
concurrency:
1314
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

0 commit comments

Comments
 (0)