Skip to content

Commit

Permalink
fix path to project
Browse files Browse the repository at this point in the history
  • Loading branch information
asv-soft-u03 authored Jun 5, 2024
1 parent 98ae615 commit 398e35e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/BuildForWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,21 @@ jobs:
run: |
dotnet tool install -g dotnet-setversion
setversion ${{ steps.version.outputs.version-without-v }} ${{ env.PATH_TO_PROJECTS }}\Asv.Drones.Gui.Desktop\Asv.Drones.Gui.Desktop.csproj
- name: Restore workloads
run: |
cd src
dotnet workload restore
- name: Building projects
run: |
cd src
cd ${{ env.PATH_TO_PROJECTS }}\Asv.Drones.Gui.Desktop
dotnet build -c Release
- name: Publish
uses: actions/upload-artifact@v3
with:
name: release-package-${{ runner.os }}-${{ inputs.build-type }}-${{ inputs.arch != '' && inputs.arch || runner.arch }}
name: release-package-${{ runner.os }}-${{ inputs.build-type }}
path: |
${{ github.workspace }}/out/package/${{ inputs.preset-name }}/*.tar.*
${{ github.workspace }}/out/package/${{ inputs.preset-name }}/*.zip

0 comments on commit 398e35e

Please sign in to comment.