Skip to content

Commit

Permalink
removing symbols push
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjenkins committed Jan 4, 2024
1 parent f30c241 commit 959a059
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,21 @@ jobs:
run: dotnet pack --configuration Release -p:Version=${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER} --include-symbols --output .
if: ${{ steps.detect_develop.outcome == 'success' }}

# - name: Push Libraries to Nuget
# # if: ${{ steps.detect_develop.outcome == 'success' }}
# if: ${{ github.ref == 'refs/heads/develop' }}
# # run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.FAKEAUTH_NUGET_KEY}}
# # run: dotnet nuget push Calebs.KeyValueRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
# run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}

- name: Push KVR Symbols to Nuget
- name: Push Libraries to Nuget
# if: ${{ steps.detect_develop.outcome == 'success' }}
if: ${{ github.ref == 'refs/heads/develop' }}
run: dotnet nuget push Calebs.KeyValueRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
# run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.FAKEAUTH_NUGET_KEY}}
# run: dotnet nuget push Calebs.KeyValueRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}

- name: Push KVR.SqLite Symbols to Nuget
if: ${{ github.ref == 'refs/heads/develop' }}
run: dotnet nuget push Calebs.KeyValueSqlLiteRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
# - name: Push KVR Symbols to Nuget
# if: ${{ github.ref == 'refs/heads/develop' }}
# run: dotnet nuget push Calebs.KeyValueRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}

- name: Push KVR.Tests Symbols to Nuget
if: ${{ github.ref == 'refs/heads/develop' }}
run: dotnet nuget push Calebs.KeyValueRepoTests.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
# - name: Push KVR.SqLite Symbols to Nuget
# if: ${{ github.ref == 'refs/heads/develop' }}
# run: dotnet nuget push Calebs.KeyValueSqlLiteRepo.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}

# - name: Push KVR.Tests Symbols to Nuget
# if: ${{ github.ref == 'refs/heads/develop' }}
# run: dotnet nuget push Calebs.KeyValueRepoTests.${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER}.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}

0 comments on commit 959a059

Please sign in to comment.