fix: do not use build-push-action and buildx
Some checks failed
build image / build (push) Failing after 57s

This commit is contained in:
Bruno Carlin 2025-01-05 04:17:56 +01:00
parent 976d7aff62
commit ea354f750d
Signed by: bcarlin
GPG key ID: 8E254EA0FFEB9B6D

View file

@ -25,13 +25,11 @@ jobs:
registry: code.bcarlin.net registry: code.bcarlin.net
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ github.token }} password: ${{ github.token }}
-
name: Set up Docker Buildx - name: Build image
uses: docker/setup-buildx-action@v3 run: |
- docker build -t code.bcarlin.net/oci/browsers:latest .
name: Build and push
uses: docker/build-push-action@v6 - name: Push image
with: run: |
push: true docker push code.bcarlin.net/oci/browsers:latest
pull: true
tags: code.bcarlin.net/oci/browsers:latest