Skip to content

Commit 4a401b3

Browse files
committed
Set version via environment variable
1 parent 9ebae92 commit 4a401b3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
dotnet-version: 7.0.x
3030
- if: contains(matrix.runs-on, 'macOS') || contains(matrix.runs-on, 'ubuntu')
3131
env:
32-
MINVER_VERSION: ${{ secrets.MINVER_VERSION }}
32+
MINVERVERSIONOVERRIDE: ${{ secrets.MINVER_VERSION }}
3333
run: ./build.sh
3434
- if: matrix.runs-on == 'windows-latest' && github.ref != 'refs/heads/main' && !contains(github.ref, 'refs/tags/')
3535
env:
36-
MINVER_VERSION: ${{ secrets.MINVER_VERSION }}
36+
MINVERVERSIONOVERRIDE: ${{ secrets.MINVER_VERSION }}
3737
run: ./build.ps1
3838
- if: (matrix.runs-on == 'windows-latest') && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/'))
39-
env:
40-
MINVER_VERSION: ${{ secrets.MINVER_VERSION }}
39+
env:
40+
MINVERVERSIONOVERRIDE: ${{ secrets.MINVER_VERSION }}
4141
run: ./build.ps1

0 commit comments

Comments
 (0)