Browse Source

Try the MintPlayer PushGithub Step setup

pull/2221/head
Christoph Wille 5 years ago committed by GitHub
parent
commit
fc7896a312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/build-ilspy.yml

4
.github/workflows/build-ilspy.yml

@ -45,7 +45,7 @@ jobs:
dotnet-version: '3.1.x' dotnet-version: '3.1.x'
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
env: env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} NUGET_AUTH_TOKEN: '%NUGET_AUTH_TOKEN%'
- name: Add msbuild to PATH - name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2 uses: microsoft/setup-msbuild@v1.0.2
@ -123,6 +123,6 @@ jobs:
- name: Push to Github Packages - name: Push to Github Packages
if: github.ref == 'refs/heads/master' && success() && matrix.channel == 'zip' && matrix.configuration == 'release' if: github.ref == 'refs/heads/master' && success() && matrix.channel == 'zip' && matrix.configuration == 'release'
run: nuget.exe push ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg -NoSymbols -SkipDuplicate run: dotnet nuget push ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg --no-symbols --skip-duplicate
env: env:
NUGET_AUTH_TOKEN: ${{ github.token }} NUGET_AUTH_TOKEN: ${{ github.token }}

Loading…
Cancel
Save