We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d36bd commit be3b71aCopy full SHA for be3b71a
.github/workflows/release.yml
@@ -37,7 +37,7 @@ jobs:
37
tag=$(git describe --tags --abbrev=0)
38
release_name="dotignore-$tag-${{ matrix.target }}"
39
# 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
+ 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
41
# Pack files
42
if [ "${{ matrix.target }}" == "win-x64" ]; then
43
# Pack to zip for Windows
0 commit comments