Try just buildx without registry concerns
All checks were successful
Release / Release (push) Successful in 16s
All checks were successful
Release / Release (push) Successful in 16s
This commit is contained in:
parent
b85e614d9a
commit
ba78c7faea
1 changed files with 23 additions and 19 deletions
|
@ -23,25 +23,29 @@ jobs:
|
|||
|
||||
- name: Setup Buildx
|
||||
uses: https://code.forgejo.org/docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
buildx build .docker/latest
|
||||
|
||||
- name: Login to the NibTech Container Registry
|
||||
uses: https://code.forgejo.org/docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ env.REGISTRY_USERNAME }}
|
||||
password: ${{ env.REGISTRY_PASSWORD }}
|
||||
# - name: Login to the NibTech Container Registry
|
||||
# uses: https://code.forgejo.org/docker/login-action@v3
|
||||
# with:
|
||||
# registry: ${{ env.REGISTRY }}
|
||||
# username: ${{ env.REGISTRY_USERNAME }}
|
||||
# password: ${{ env.REGISTRY_PASSWORD }}
|
||||
|
||||
- name: Extract repository metadata (tags, labels)
|
||||
id: meta
|
||||
uses: https://github.com/docker/metadata-action@v5
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
|
||||
# - name: Extract repository metadata (tags, labels)
|
||||
# id: meta
|
||||
# uses: https://github.com/docker/metadata-action@v5
|
||||
# with:
|
||||
# images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
|
||||
|
||||
- name: Build and publish Alpine Latest
|
||||
uses: https://code.forgejo.org/docker/build-push-action@v5
|
||||
with:
|
||||
context: .docker/latest
|
||||
push: true
|
||||
tags: |
|
||||
${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}:latest
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
# - name: Build and publish Alpine Latest
|
||||
# uses: https://code.forgejo.org/docker/build-push-action@v5
|
||||
# with:
|
||||
# context: .docker/latest
|
||||
# push: true
|
||||
# tags: |
|
||||
# ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}:latest
|
||||
# labels: ${{ steps.meta.outputs.labels }}
|
||||
|
|
Loading…
Reference in a new issue