We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b848d commit c02e616Copy full SHA for c02e616
.github/workflows/build.yml
@@ -36,6 +36,12 @@ jobs:
36
- name: Build
37
run: dotnet build ${{ env.Project_Path }} --configuration Release --no-restore
38
39
+ # Get package version
40
+ - name: Get Package Version
41
+ run: |
42
+ $version = [system.diagnostics.fileversioninfo]::getversioninfo("Flow.Launcher.Localization\bin\Release\netstandard2.0\Flow.Launcher.Localization.dll").productversion
43
+ echo "release_version=$version" | out-file -filepath $env:github_env -encoding utf-8 -append
44
+
45
# Execute all unit tests in the solution
46
- name: Execute unit tests
47
if: github.event_name == 'push' && github.ref != 'refs/heads/main'
0 commit comments