Skip to content

Commit

Permalink
ci: Fix paths
Browse files Browse the repository at this point in the history
yep its not windows no more πŸ‘
  • Loading branch information
pizzaboxer committed Oct 9, 2024
1 parent 95eb287 commit 345c9bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
run: dotnet build --no-restore

- name: Publish
run: dotnet publish -p:PublishSingleFile=true -r win-x64 -c ${{ matrix.configuration }} --self-contained false .\Bloxstrap.Builder\Bloxstrap.Builder.csproj
run: dotnet publish -p:PublishSingleFile=true -r win-x64 -c ${{ matrix.configuration }} --self-contained false Bloxstrap.Builder/Bloxstrap.Builder.csproj

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Bloxstrap.Builder (${{ matrix.configuration }})
path: |
.\Bloxstrap.Builder\bin\${{ matrix.configuration }}\net6.0\win-x64\publish\*
Bloxstrap.Builder/bin/${{ matrix.configuration }}/net6.0/win-x64/publish/*
release:
needs: build
Expand Down

0 comments on commit 345c9bf

Please sign in to comment.