@@ -112,6 +112,7 @@ jobs:
112
112
type=registry,ref=ghcr.io/covergo/auth-nuget-cache:${{ needs.version.outputs.issue_id_slug }}
113
113
build-args : |-
114
114
COMMIT_SHA=${{ github.sha }}
115
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
115
116
BUILD_DATETIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
116
117
APP_VERSION=${{ needs.version.outputs.app_version }}
117
118
FILE_VERSION=${{ needs.version.outputs.file_version }}
@@ -184,6 +185,7 @@ jobs:
184
185
cache-to : type=registry,ref=ghcr.io/covergo/auth-nuget-default-cache:${{ needs.version.outputs.issue_id_slug }},mode=max
185
186
build-args : |-
186
187
COMMIT_SHA=${{ github.sha }}
188
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
187
189
BUILD_DATETIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
188
190
APP_VERSION=${{ needs.version.outputs.app_version }}
189
191
FILE_VERSION=${{ needs.version.outputs.file_version }}
@@ -269,6 +271,7 @@ jobs:
269
271
build-args : |-
270
272
NOW="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
271
273
COMMIT_SHA=${{ github.sha }}
274
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
272
275
BUILD_DATETIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
273
276
APP_VERSION=${{ needs.version.outputs.app_version }}
274
277
FILE_VERSION=${{ needs.version.outputs.file_version }}
@@ -318,6 +321,7 @@ jobs:
318
321
target : build-predeployment
319
322
build-args : |-
320
323
COMMIT_SHA=${{ github.sha }}
324
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
321
325
BUILD_DATETIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
322
326
APP_VERSION=${{ needs.version.outputs.app_version }}
323
327
FILE_VERSION=${{ needs.version.outputs.file_version }}
@@ -359,7 +363,9 @@ jobs:
359
363
type=registry,ref=ghcr.io/covergo/auth-cache:${{ needs.version.outputs.issue_id_slug }}
360
364
type=registry,ref=ghcr.io/covergo/auth-test-unit-cache:${{ needs.version.outputs.issue_id_slug }}
361
365
cache-to : type=registry,ref=ghcr.io/covergo/auth-test-unit-cache:${{ needs.version.outputs.issue_id_slug }},mode=min
362
- build-args : COMMIT_SHA=${{ github.sha }}
366
+ build-args : |-
367
+ COMMIT_SHA=${{ github.sha }}
368
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
363
369
- name : Image digest
364
370
run : echo ${{ steps.docker-build-auth-test-unit.outputs.digest }}
365
371
run-auth-test-unit :
@@ -448,7 +454,9 @@ jobs:
448
454
type=registry,ref=ghcr.io/covergo/auth-test-unit-cache:${{ needs.version.outputs.issue_id_slug }}
449
455
type=registry,ref=ghcr.io/covergo/cases-mariadb-test-integration-cache:${{ needs.version.outputs.issue_id_slug }}
450
456
cache-to : type=registry,ref=ghcr.io/covergo/cases-mariadb-test-integration-cache:${{ needs.version.outputs.issue_id_slug }},mode=max
451
- build-args : COMMIT_SHA=${{ github.sha }}
457
+ build-args : |-
458
+ COMMIT_SHA=${{ github.sha }}
459
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
452
460
- name : Image digest
453
461
run : echo ${{ steps.docker-build-integration-tests.outputs.digest }}
454
462
- name : Checkout repository
@@ -553,7 +561,9 @@ jobs:
553
561
type=registry,ref=ghcr.io/covergo/cases-api-test-integration-cache:${{ needs.version.outputs.issue_id_slug }}
554
562
type=registry,ref=ghcr.io/covergo/cases-test-acceptance-cache:${{ needs.version.outputs.issue_id_slug }}
555
563
cache-to : type=registry,ref=ghcr.io/covergo/cases-test-acceptance-cache:${{ needs.version.outputs.issue_id_slug }},mode=max
556
- build-args : COMMIT_SHA=${{ github.sha }}
564
+ build-args : |-
565
+ COMMIT_SHA=${{ github.sha }}
566
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
557
567
- name : Image digest
558
568
run : echo ${{ steps.docker-build-acceptance-tests.outputs.digest }}
559
569
run-acceptance-tests :
@@ -687,7 +697,9 @@ jobs:
687
697
type=registry,ref=ghcr.io/covergo/auth-test-unit-cache:${{ needs.version.outputs.issue_id_slug }}
688
698
type=registry,ref=ghcr.io/covergo/cases-api-test-integration-cache:${{ needs.version.outputs.issue_id_slug }}
689
699
cache-to : type=registry,ref=ghcr.io/covergo/cases-api-test-integration-cache:${{ needs.version.outputs.issue_id_slug }},mode=max
690
- build-args : COMMIT_SHA=${{ github.sha }}
700
+ build-args : |-
701
+ COMMIT_SHA=${{ github.sha }}
702
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
691
703
- name : Image digest
692
704
run : echo ${{ steps.docker-build-api-test-integration.outputs.digest }}
693
705
run-api-test-integration :
@@ -1124,7 +1136,9 @@ jobs:
1124
1136
tags : ghcr.io/covergo/auth-mongo:${{ needs.version.outputs.app_version }}
1125
1137
cache-from : type=registry,ref=ghcr.io/covergo/auth-mongo-cache:${{ needs.version.outputs.issue_id_slug }}
1126
1138
cache-to : type=registry,ref=ghcr.io/covergo/auth-mongo-cache:${{ needs.version.outputs.issue_id_slug }},mode=max
1127
- build-args : COMMIT_SHA=${{ github.sha }}
1139
+ build-args : |-
1140
+ COMMIT_SHA=${{ github.sha }}
1141
+ GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
1128
1142
- name : Image digest
1129
1143
run : echo ${{ steps.docker-build-auth-mongo.outputs.digest }}
1130
1144
deploy-tenant-tahoe :
0 commit comments