push tags
Some checks failed
ci / docker-build (push) Failing after 19s

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
Frank Villaro-Dixon 2024-05-24 22:34:06 +02:00
parent 8138911e25
commit 188ec25586

View file

@ -4,6 +4,8 @@ on:
push: push:
branches: branches:
- docker - docker
tags:
- '*'
jobs: jobs:
docker-build: docker-build:
@ -22,21 +24,31 @@ jobs:
registry: forge.k3s.fr registry: forge.k3s.fr
username: ${{ secrets.FORGEHUB_USERNAME }} username: ${{ secrets.FORGEHUB_USERNAME }}
password: ${{ secrets.FORGEHUB_PASSWORD }} password: ${{ secrets.FORGEHUB_PASSWORD }}
- name: Extract metadata (tags, labels) for Forge hub
id: metaforge
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: forge.k3s.fr/frank/opentsdb-auth-proxy
- name: Build and push - name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: true
tags: forge.k3s.fr/frank/opentsdb-auth-proxy:latest tags: ${{ steps.metaforge.outputs.tags }}
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }} password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Extract metadata (tags, labels) for Forge hub
id: metadockerhub
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: frankkkkk/opentsdb-auth-proxy
- name: Build and push - name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: true
tags: frankkkkk/opentsdb-auth-proxy:latest tags: ${{ steps.metadockerhub.outputs.tags }}