mirror of https://github.com/statping/statping
include is_prerelease in debug print
parent
8858a3efcd
commit
e5b8c01e6d
|
@ -37,6 +37,7 @@ jobs:
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "is_release=false" >> $GITHUB_OUTPUT
|
echo "is_release=false" >> $GITHUB_OUTPUT
|
||||||
|
echo "is_prerelease=true" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
# this will be v1.2.3 for on-tag builds and v1.2.3-numberofcommits-sha for off-tag builds
|
# this will be v1.2.3 for on-tag builds and v1.2.3-numberofcommits-sha for off-tag builds
|
||||||
echo "version=$TAG" >> $GITHUB_OUTPUT
|
echo "version=$TAG" >> $GITHUB_OUTPUT
|
||||||
|
@ -45,6 +46,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo == version summary ==
|
echo == version summary ==
|
||||||
echo is_release: ${{ steps.versions.outputs.is_release }}
|
echo is_release: ${{ steps.versions.outputs.is_release }}
|
||||||
|
echo is_prerelease: ${{ steps.versions.outputs.is_prerelease }}
|
||||||
echo version: ${{ steps.versions.outputs.version }}
|
echo version: ${{ steps.versions.outputs.version }}
|
||||||
frontend:
|
frontend:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue