👷 shenanigans with versions
This commit is contained in:
parent
4fd6848372
commit
05d2f5829d
@ -28,11 +28,18 @@ jobs:
|
|||||||
echo "::notice title=GOTIME::$GOTIME"
|
echo "::notice title=GOTIME::$GOTIME"
|
||||||
# Set the output named "version_changed"
|
# Set the output named "version_changed"
|
||||||
echo "version_changed=$GOTIME" >> $GITHUB_OUTPUT
|
echo "version_changed=$GOTIME" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
checkvar:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ check_for_changed_version ]
|
||||||
|
steps:
|
||||||
|
- name: Echo response from first check
|
||||||
|
run: echo ${{needs.check_for_changed_version.outputs.version_changed}}
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ check_for_changed_version ]
|
needs: [ check_for_changed_version ]
|
||||||
if: needs.check_for_changed_version.outputs.version_changed == 'True'
|
if: needs.check_for_changed_version.outputs.version_changed == "True"
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "src"
|
name = "src"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Joe Kaufeld <opensource@joekaufeld.com>"]
|
authors = ["Joe Kaufeld <opensource@joekaufeld.com>"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user