Skip to content

Commit

Permalink
Update actions to perform docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlovelltroy committed Jan 16, 2024
1 parent 59f963d commit 374f228
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,17 @@ jobs:

steps:
- name: Set up Go 1.21
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.21

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 374f228

Please sign in to comment.