Skip to content

Commit 2917b2a

Browse files
Merge pull request #16 from bariscanyilmaz/refactor-release
specify project name in publish
2 parents b4d36bd + be3b71a commit 2917b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
tag=$(git describe --tags --abbrev=0)
3838
release_name="dotignore-$tag-${{ matrix.target }}"
3939
# Build everything
40-
dotnet publish --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true -p:IncludeNativeLibrariesForSelfExtract=true --runtime "${{ matrix.target }}" -c Release -o $release_name
40+
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
4141
# Pack files
4242
if [ "${{ matrix.target }}" == "win-x64" ]; then
4343
# Pack to zip for Windows

0 commit comments

Comments
 (0)