Skip to content
Merged
Changes from all commits
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
10 changes: 10 additions & 0 deletions .github/workflows/pnp-query-api-commit-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ jobs:
service-account-key: ${{ secrets.secret-auth }}
secrets: |
API_KEY: api-key-hiidentity-staff
NEXUS_PASSWORD: nexus-password
NEXUS_USERNAME: nexus-username

- name: IAM token
id: testtoken
Expand All @@ -239,6 +241,14 @@ jobs:
service-account-key: ${{ secrets.gcloud-auth-staging }}
api-key: ${{ env.API_KEY }}

- name: Update nuget source
run: |
dotnet nuget update source Extenda \
--username ${{ env.NEXUS_USERNAME }} \
--password ${{ env.NEXUS_PASSWORD }} \
--configfile nuget.config \
--store-password-in-clear-text

- name: Run smoke tests
run: |
dotnet test ${{ inputs.path-to-smoke-tests }} \
Expand Down