Files
container/.github/workflows/release.yml
T
2025-06-05 16:15:28 -07:00

18 lines
332 B
YAML

name: Release containerization
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
containerization:
permissions:
contents: read
packages: write
uses: ./.github/workflows/containerization-build-template.yml
with:
release: true
version: ${{ github.ref_name }}
secrets: inherit