fix: Use bulid output version instead of fake

This commit is contained in:
Alan Rynne
2024-11-05 11:21:13 +00:00
parent 2f83e01f66
commit 246b9099c4
+3 -5
View File
@@ -14,13 +14,11 @@ on:
permissions:
contents: read
env:
GitVersion_FullSemVer: 3.0.0-fakeRelease
jobs:
build:
runs-on: windows-latest
outputs:
version: ${{ steps.set-version.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
@@ -76,7 +74,7 @@ jobs:
workflow: build-cpp-installers
repo: specklesystems/connector-installers
token: ${{ secrets.CONNECTORS_GH_TOKEN }}
inputs: '{ "run_id": "${{ github.run_id }}", "version": "${{ env.GitVersion_FullSemVer }}", "public_release": ${{ env.IS_TAG_BUILD }}, "store_artifacts": ${{ env.IS_RELEASE_BRANCH }} }'
inputs: '{ "run_id": "${{ github.run_id }}", "version": "${{ needs.build.outputs.version }}", "public_release": ${{ env.IS_TAG_BUILD }}, "store_artifacts": ${{ env.IS_RELEASE_BRANCH }} }'
ref: main
wait-for-completion: true
wait-for-completion-interval: 10s