Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
- name: Build
run: dotnet build ${{ env.Project_Path }} --configuration Release --no-restore

# Get package version
- name: Get Package Version
run: |
$version = [system.diagnostics.fileversioninfo]::getversioninfo("Flow.Launcher.Localization\bin\Release\netstandard2.0\Flow.Launcher.Localization.dll").fileversion
echo "release_version=$version" | out-file -filepath $env:github_env -encoding utf-8 -append

# Execute all unit tests in the solution
- name: Execute unit tests
if: github.event_name == 'push' && github.ref != 'refs/heads/main'
Expand Down
Loading