Skip to content

[maven-release-plugin] prepare release 2024.0.3 #27

[maven-release-plugin] prepare release 2024.0.3

[maven-release-plugin] prepare release 2024.0.3 #27

Workflow file for this run

name: Publish Docker image
on:
push:
tags:
- "*"
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.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: nbittich/drive-sync
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}