mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 23:32:10 -05:00
Use default GHCR token
Signed-off-by: Brett Logan <lindluni@github.com>
This commit is contained in:
parent
8267d01125
commit
f965bd7e7c
2 changed files with 4 additions and 4 deletions
4
.github/workflows/deploy-production.yml
vendored
4
.github/workflows/deploy-production.yml
vendored
|
@ -156,8 +156,8 @@ jobs:
|
|||
uses: docker/login-action@v2.0.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ secrets.GCR_USERNAME }}
|
||||
password: ${{ secrets.GCR_TOKEN }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Start the deployment for the ${{ matrix.images.deployment-environment-identifier }} environment
|
||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
||||
|
|
4
.github/workflows/deploy-release.yml
vendored
4
.github/workflows/deploy-release.yml
vendored
|
@ -44,8 +44,8 @@ jobs:
|
|||
uses: docker/login-action@v2.0.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ secrets.GCR_USERNAME }}
|
||||
password: ${{ secrets.GCR_TOKEN }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Get current release identifier
|
||||
# shellcheck disable=SC2062
|
||||
|
|
Loading…
Reference in a new issue