Skip to content

ghactions: github action autoupdate #541

ghactions: github action autoupdate

ghactions: github action autoupdate #541

name: "Publish Docker image"
on: push
jobs:
push_to_registry:
name: "Push Docker image to Docker Hub"
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
uses: actions/[email protected]
- name: "Log in to Docker Hub"
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: "Extract metadata (tags, labels) for Docker"
id: meta
uses: docker/[email protected]
with:
images: jmlemetayer/abba
flavor: |
latest=true
- name: "Build and push Docker image"
uses: docker/[email protected]
with:
context: docker
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}