mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 02:54:21 +00:00
Allow overriding the version number when building a new image
This commit is contained in:
parent
a2c3e467e2
commit
d95c07db6b
1 changed files with 7 additions and 0 deletions
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
@ -7,7 +7,14 @@ on:
|
||||||
- "v*"
|
- "v*"
|
||||||
# Can also be triggered manually
|
# Can also be triggered manually
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
type: string
|
||||||
|
description: "Semantic version number to use when building the image."
|
||||||
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ghcrio:
|
ghcrio:
|
||||||
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
|
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
|
||||||
|
with:
|
||||||
|
version: ${{ inputs.version }}
|
||||||
|
|
Loading…
Reference in a new issue