Skip to content

README fix: adds spacing that github doesn't strip (hopefully) #25

README fix: adds spacing that github doesn't strip (hopefully)

README fix: adds spacing that github doesn't strip (hopefully) #25

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 }}