Skip to content

Commit

Permalink
chore: fix build action paths
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzzerd committed Feb 17, 2024
1 parent 23d1738 commit 22c682b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
run: dotnet test --no-build

- name: Publish
run: dotnet publish SharpFM/SharpFM.csproj --runtime "${{ matrix.target }}" -c Debug
run: dotnet publish SharpFM.csproj --runtime "${{ matrix.target }}" -c Debug
2 changes: 1 addition & 1 deletion .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
release_name="SharpFM-$tag-${{ matrix.target }}"
# Build everything
dotnet publish SharpFM/SharpFM.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name"
dotnet publish SharpFM.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name"
# Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then
Expand Down

0 comments on commit 22c682b

Please sign in to comment.