Skip to content

Commit

Permalink
Update Secrets in Release Actions (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeeder22 committed Jun 18, 2021
1 parent 7fa953c commit 2f86742
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linuxrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/windowsrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 2f86742

Please sign in to comment.