Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix feedz nuget feed api key #2907

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update integration-test.yaml
rouke-broersma authored Apr 12, 2024
commit ff0bd8703be80981c0cd61f119d322bb6209dff9
3 changes: 1 addition & 2 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
@@ -5,7 +5,6 @@ on: [pull_request]

env:
NUGET_FEED: https://f.feedz.io/stryker/stryker-net/nuget/index.json
FEEDZ_NUGET_API_KEY: T-9O45ZZZ5lwQ6ptrGpDuoX8tdZLliNkScn9k
RestoreLockedMode: true
VERSION: "0.0.0-github-${{ github.run_number }}"

@@ -25,7 +24,7 @@ jobs:
- name: Publish integration test package
run: dotnet nuget push ${{ github.workspace }}/publish/*.nupkg -s $NUGET_FEED -k "$FEEDZ_NUGET_API_KEY"
env:
FEEDZ_NUGET_API_KEY: ${{ secrets.FEEDZ_NUGET_API_KEY }}
FEEDZ_NUGET_API_KEY: ${{ vars.FEEDZ_NUGET_API_KEY }}
- name: Install integration test package from feed
run: dotnet tool install dotnet-stryker --tool-path ${{ github.workspace }}/.nuget/tools --version $VERSION --add-source $NUGET_FEED
- name: Run integration test
Loading