Skip to content

Merge pull request #32 from rmelotte/hotfix/fix-mediamarkt-es-and-add-be #2

Merge pull request #32 from rmelotte/hotfix/fix-mediamarkt-es-and-add-be

Merge pull request #32 from rmelotte/hotfix/fix-mediamarkt-es-and-add-be #2

Workflow file for this run

name: Publish Docker image
on:
push:
branches:
- '*'
# release:
# types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout the codebase
uses: actions/checkout@v4
- name: Login to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/discount-bandit
flavor: |
latest=true
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}