fix docker login
Some checks failed
Build Docker Image / build (push) Failing after 2m44s

This commit is contained in:
Alex Wittern 2024-08-19 15:27:17 +02:00
parent 4fac3fbfa3
commit ee5d1ea969

View file

@ -19,6 +19,12 @@ jobs:
with: with:
go-version: '^1.22.5' go-version: '^1.22.5'
- run: go version - run: go version
- name: Login to Package Registry
uses: docker/login-action@v2
with:
registry: git.wittern.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build the Docker image - name: Build the Docker image
run: | run: |
go install github.com/a-h/templ/cmd/templ@latest go install github.com/a-h/templ/cmd/templ@latest