Skip to content

potential README fix: uses deprecated align property instead of moder… #23

potential README fix: uses deprecated align property instead of moder…

potential README fix: uses deprecated align property instead of moder… #23

Workflow file for this run

name: Docker CI
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Metadata
id: docker-metadata
uses: docker/metadata-action@v5
with:
images: ghcr.io/propromo-software/propromo
tags: |
type=ref,event=tag
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
file: Dockerfile.new
tags: ${{ steps.docker-metadata.outputs.tags }}
labels: ${{ steps.docker-metadata.outputs.labels }}