Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/bigbang1112/gbx-net into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Sep 13, 2024
2 parents 4bc74f3 + d9bb839 commit 2b25a79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
git_hash=$(git rev-parse HEAD)
dotnet build -c Release --no-restore /p:ContinuousIntegrationBuild=true --version-suffix nightly.$(date +'%Y%m%d').${git_hash::7}
- name: Publish nightly ${{ matrix.lib }} nupkg to github.com
run: dotnet nuget push Src/GBX.NET/bin/Release/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/bigbang1112/index.json --skip-duplicate
- name: Publish nightly GBX.NET nupkg to nuget.gbx.tools
run: dotnet nuget push Src/GBX.NET/bin/Release/*.nupkg -k ${{ secrets.NUGET_GBXTOOLS_API_KEY }} -s https://nuget.gbx.tools/v3/index.json --skip-duplicate
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ jobs:

- name: Publish ${{ matrix.lib }} nupkg to github.com
run: dotnet nuget push ${{ matrix.lib }}/bin/Release/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/bigbang1112/index.json --skip-duplicate

- name: Publish ${{ matrix.lib }} nupkg to nuget.gbx.tools
run: dotnet nuget push ${{ matrix.lib }}/bin/Release/*.nupkg -k ${{ secrets.NUGET_GBXTOOLS_API_KEY }} -s https://nuget.gbx.tools/v3/index.json --skip-duplicate

- name: Upload ${{ matrix.lib }} nupkg to this release
run: gh release upload ${{ github.ref_name }} ${{ matrix.lib }}/bin/Release/*.nupkg
Expand Down

0 comments on commit 2b25a79

Please sign in to comment.