Skip to content

ci: trigger on push to verify branches #1

ci: trigger on push to verify branches

ci: trigger on push to verify branches #1

Workflow file for this run

name: Verification image build
on:
workflow_dispatch:
push:
branches:
- 'verify/**'
env:
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
push: true
tags: ghcr.io/paperclipinc/paperclip-operator:lease-verify