From 2f86742cd39aaac63558f767f26e4862751570db Mon Sep 17 00:00:00 2001 From: Ben Meeder Date: Fri, 18 Jun 2021 13:05:00 -0500 Subject: [PATCH] Update Secrets in Release Actions (#6) --- .github/workflows/linuxrelease.yml | 2 +- .github/workflows/windowsrelease.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linuxrelease.yml b/.github/workflows/linuxrelease.yml index 3ebb0d3..dd148ef 100644 --- a/.github/workflows/linuxrelease.yml +++ b/.github/workflows/linuxrelease.yml @@ -28,7 +28,7 @@ jobs: # Runs a set of commands using the runners shell - name: Login - run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ secrets.GITHUB_USERNAME }} --password-stdin + run: echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin - name: Publish run: docker push ghcr.io/servicenow/atf-headless-runner:lin-${{ github.event.release.tag_name }} diff --git a/.github/workflows/windowsrelease.yml b/.github/workflows/windowsrelease.yml index a26c540..f332192 100644 --- a/.github/workflows/windowsrelease.yml +++ b/.github/workflows/windowsrelease.yml @@ -28,7 +28,7 @@ jobs: # Runs a set of commands using the runners shell - name: Login - run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ secrets.GITHUB_USERNAME }} --password-stdin + run: echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin - name: Publish run: docker push ghcr.io/servicenow/atf-headless-runner:win-${{ github.event.release.tag_name }}