1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-22 11:04:21 +00:00
royalnet/.github/workflows/release.yml

20 lines
459 B
YAML

name: "Release new version"
on:
# Creation of a new tag starting with v
push:
tags:
- "v*"
# Can also be triggered manually
workflow_dispatch:
inputs:
version:
type: string
description: "Semantic version number to use when building the image. (v1.2.3)"
required: true
jobs:
ghcrio:
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
with:
version: ${{ inputs.version }}