2023-10-16 20:17:12 +02:00
|
|
|
name: Publish Docker image
|
|
|
|
|
2023-10-16 20:19:21 +02:00
|
|
|
on: [push]
|
2023-10-16 20:17:12 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-10-16 20:23:49 +02:00
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
2023-10-16 20:17:12 +02:00
|
|
|
with:
|
2023-10-16 20:23:49 +02:00
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ gitea.actor }}
|
2023-10-16 20:17:12 +02:00
|
|
|
password: ${{ secrets.APP_TOKEN }}
|
|
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
|
|
|
with:
|
|
|
|
registry: git.depeuter.dev
|
|
|
|
images: tdpeuter/docker-test
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|