Skip to content

Commit

Permalink
Merge pull request #16 from bariscanyilmaz/refactor-release
Browse files Browse the repository at this point in the history
specify project name in publish
  • Loading branch information
bariscanyilmaz authored Sep 5, 2021
2 parents b4d36bd + be3b71a commit 2917b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
tag=$(git describe --tags --abbrev=0)
release_name="dotignore-$tag-${{ matrix.target }}"
# Build everything
dotnet publish --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true -p:IncludeNativeLibrariesForSelfExtract=true --runtime "${{ matrix.target }}" -c Release -o $release_name
dotnet publish "./src/dotignore.csproj" --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true -p:IncludeNativeLibrariesForSelfExtract=true --runtime "${{ matrix.target }}" -c Release -o $release_name
# Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then
# Pack to zip for Windows
Expand Down

0 comments on commit 2917b2a

Please sign in to comment.