We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d232dab commit 3f1bc06Copy full SHA for 3f1bc06
1 file changed
.github/workflows/test-csharp.yml
@@ -65,8 +65,12 @@ jobs:
65
- run: echo '${{ steps.stepid.outputs.dotnet-version }}'
66
67
- name: Set VersionSuffix environment variable
68
- if: github.event_name == 'workflow_dispatch'
69
- run: echo "VersionSuffix=manualtrigger" >> $GITHUB_ENV
+ if: github.event_name == 'workflow_dispatch' && startswith(matrix.os, 'ubuntu')
+ run: echo "VersionSuffix=manualtrigger" >> $GITHUB_ENV'
70
+
71
+ - name: Set VersionSuffix environment variable
72
+ if: github.event_name == 'workflow_dispatch' && startswith(matrix.os, 'windows')
73
+ run: echo "VersionSuffix=manualtrigger" >> $env:GITHUB_ENV
74
75
- name: Download regorus ffi shared libraries
76
uses: actions/download-artifact@v4
0 commit comments