Skip to content

Commit 7cbe20a

Browse files
committed
change
1 parent 42aa5ca commit 7cbe20a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/actions/check-image-exists/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ inputs:
77
tag:
88
required: true
99
description: Tag to check
10+
github_token:
11+
required: true
12+
description: Github token
1013

1114
runs:
1215
using: "composite"
@@ -31,4 +34,4 @@ runs:
3134
env:
3235
SERVIC: ${{ inputs.service }}
3336
TAG: ${{ inputs.tag }}
34-
TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
TOKEN: ${{ inputs.github_token }}

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
with:
4343
service: arm-pretix
4444
tag: ${{ steps.git.outputs.githash }}
45+
github_token: ${{ secrets.GITHUB_TOKEN }}
4546

4647
check-frontend-build:
4748
name: Check frontend needs building
@@ -73,6 +74,7 @@ jobs:
7374
with:
7475
service: frontend/${{ env.TF_WORKSPACE }}
7576
tag: ${{ steps.git.outputs.githash }}
77+
github_token: ${{ secrets.GITHUB_TOKEN }}
7678

7779
check-backend-build:
7880
name: Check backend needs building
@@ -104,6 +106,7 @@ jobs:
104106
with:
105107
service: backend
106108
tag: ${{ steps.git.outputs.githash }}
109+
github_token: ${{ secrets.GITHUB_TOKEN }}
107110

108111
build-pretix:
109112
name: Build pretix

0 commit comments

Comments
 (0)