👷 shenanigans with versions
Some checks failed
Release / check_for_changed_version (push) Successful in 22s
Release / checkvar (push) Successful in 19s
Release / build (push) Failing after 3s

This commit is contained in:
Joe Kaufeld 2023-04-26 10:26:27 -04:00
parent 4fd6848372
commit 05d2f5829d
2 changed files with 10 additions and 3 deletions

View File

@ -28,11 +28,18 @@ jobs:
echo "::notice title=GOTIME::$GOTIME"
# Set the output named "version_changed"
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:
runs-on: ubuntu-latest
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:
contents: write
steps:

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "src"
version = "0.2.2"
version = "0.2.3"
description = ""
authors = ["Joe Kaufeld <opensource@joekaufeld.com>"]