Skip to content

Commit

Permalink
Fix broken builds on .NET SDK 6.0.200 (#942)
Browse files Browse the repository at this point in the history
Technical:
- Bump ghul.targets to 1.2.0, which fixes issues due to breaking build changes in SDK 6.0.200
- Remove 'true' from nuget push --no-symbols parameter in CI workflow (see NuGet/Home#11601)
  • Loading branch information
degory authored Feb 27, 2022
1 parent df6868c commit 8434b1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"ghul.compiler": {
"version": "0.5.9",
"version": "0.5.11",
"commands": [
"ghul-compiler"
]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
path: nupkg

- name: Publish beta package to GitHub
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/degory/index.json --skip-duplicate --no-symbols true
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/degory/index.json --skip-duplicate --no-symbols
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -289,12 +289,12 @@ jobs:
path: nupkg

- name: Publish release package to GitHub
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/degory/index.json --skip-duplicate --no-symbols true
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/degory/index.json --skip-duplicate --no-symbols
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish release package to NuGet
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${NUGET_TOKEN} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
run: dotnet nuget push ./nupkg/ghul.compiler.${{ needs.version.outputs.package }}.nupkg -k ${NUGET_TOKEN} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
env:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project>
<PropertyGroup>
<Version>0.5.10-alpha.134</Version>
<Version>0.5.12-alpha.1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ghul.targets" Version="1.1.0" />
<PackageReference Include="ghul.targets" Version="1.2.0" />
<PackageReference Include="ghul.pipes" Version="1.0.0" />
<PackageReference Include="ghul.runtime" Version="1.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 8434b1a

Please sign in to comment.