diff --git a/.github/workflows/build-test-indicators.yml b/.github/workflows/build-test-indicators.yml index c75a45f3b..ec48522b4 100644 --- a/.github/workflows/build-test-indicators.yml +++ b/.github/workflows/build-test-indicators.yml @@ -31,12 +31,19 @@ jobs: dotnet-version: "8.x" dotnet-quality: "ga" + - name: Compose version + id: compose + run: | + COMPOSED_VERSION=${{ 'DEVTEST' }} + echo "version=$COMPOSED_VERSION" >> "$GITHUB_OUTPUT" + echo "COMPOSED_VERSION=$COMPOSED_VERSION" >> "$GITHUB_ENV" + - name: Temporary uses: jacobtomlinson/gha-find-replace@v3 with: include: "src/**/*.csproj" find: "https://github.com/DaveSkender/Stock.Indicators/releases" - replace: "https://github.com/DaveSkender/Stock.Indicators/releases/tag/${{ 'MYVER' }}" + replace: "https://github.com/DaveSkender/Stock.Indicators/releases/tag/${{ steps.compose.outputs.version }}" regex: false - name: Build solution