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

21 lines
459 B
YAML
Raw Normal View History

2024-07-12 02:37:56 +00:00
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
2024-07-12 02:37:56 +00:00
jobs:
ghcrio:
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
with:
version: ${{ inputs.version }}