Fixed automatic builds with docker container

This commit is contained in:
David Allen 2024-08-21 10:09:21 -06:00
parent 990baea47c
commit a1b26e68ae
Signed by: towk
GPG key ID: 793B2924A49B3A3F
3 changed files with 24 additions and 50 deletions

View file

@ -11,8 +11,6 @@ permissions: write-all # Necessary for the generate-build-provenance action with
jobs:
build:
runs-on: ubuntu-latest
steps:
@ -20,6 +18,12 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Docker Login
uses: docker/login-action@v3
with:
registry :ghcr.io
username: ${{ gihub.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with: