Skip to content

Fix problems with complex rules #48

Fix problems with complex rules

Fix problems with complex rules #48

Workflow file for this run

name: On PR (build & publish pre-release image)
on:
pull_request:
jobs:
build_and_publish_branch:
name: Build and publish pr image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
context: ./
push: true
tags: ghcr.io/aam-digital/replication-backend:pr-${{ github.event.number }}