diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 6c8f587..ad11c7a 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -67,10 +67,10 @@ jobs: - name: Publish executables if: steps.check-release.outputs.should_release == 'true' run: | - dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r win-x64 -p:PublishSingleFile=true -o dist/win-x64 - dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r osx-x64 -p:PublishSingleFile=true -o dist/osx-x64 - dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r osx-arm64 -p:PublishSingleFile=true -o dist/osx-arm64 - dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r linux-x64 -p:PublishSingleFile=true -o dist/linux-x64 + dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r win-x64 -p:PublishSingleFile=true --no-self-contained -o dist/win-x64 + dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r osx-x64 -p:PublishSingleFile=true --no-self-contained -o dist/osx-x64 + dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r osx-arm64 -p:PublishSingleFile=true --no-self-contained -o dist/osx-arm64 + dotnet publish src/GithubRepoRemover/GithubRepoRemover.csproj -c Release -r linux-x64 -p:PublishSingleFile=true --no-self-contained -o dist/linux-x64 - name: Rename executables if: steps.check-release.outputs.should_release == 'true' diff --git a/GithubRepoRemover.sln b/GithubRepoRemover.sln index e59d276..b4b1a55 100644 --- a/GithubRepoRemover.sln +++ b/GithubRepoRemover.sln @@ -12,6 +12,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution version.json = version.json EndProjectSection EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}" + ProjectSection(SolutionItems) = preProject + scripts\create-release.ps1 = scripts\create-release.ps1 + scripts\README.md = scripts\README.md + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -40,6 +46,7 @@ Global EndGlobalSection GlobalSection(NestedProjects) = preSolution {2B5B700E-3B8B-480E-AF0C-11D13ECCE4B4} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B} + {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} = {8EC462FD-D22E-90A8-E5CE-7E832BA40C5D} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {81026922-E0EA-40FF-95C8-5D4C1E82F5B2}