Skip to content

Release

Release #6

Workflow file for this run

name: Release
on:
# tagged manually
push:
tags: ["v*"]
# dispatch from tagpr.yaml workflow
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: make docker-build-all
- run: make push-all