We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 387130f commit 92d638bCopy full SHA for 92d638b
.github/workflows/flow-deploy-release-artifact.yaml
@@ -85,6 +85,16 @@ jobs:
85
[[ "${{ github.event.inputs.dry-run-enabled }}" == true && ! -f VERSION ]] && echo -n "0.0.0-latest" > VERSION
86
echo "version=$(cat VERSION | tr -d '[:space:]')" | tee -a ${GITHUB_OUTPUT}
87
88
+ verify-version-output:
89
+ name: Verify Version Output
90
+ runs-on: solo-linux-medium
91
+ needs: prepare-release
92
+ steps:
93
+ - name: Verify version output
94
+ env:
95
+ VERSION: ${{ needs.prepare-release.outputs.version }}
96
+ run: echo "VERSION=${VERSION}"
97
+
98
update-readme:
99
name: "Update README.md"
100
uses: ./.github/workflows/flow-update-readme.yaml
0 commit comments