Skip to content

Commit

Permalink
infra: Fixed artifacts path in gitlab.ci
Browse files Browse the repository at this point in the history
  • Loading branch information
davidroth committed Nov 21, 2023
1 parent 82e3379 commit 14b13eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ build:
artifacts:
when: on_success
paths:
- ./.artifacts/package/release/*.nupkg
- ./.artifacts/package/release/*.snupkg
- ./artifacts/package/release/*.nupkg
- ./artifacts/package/release/*.snupkg
rules:
- when: always

Expand Down Expand Up @@ -76,7 +76,7 @@ publish:
variables:
GIT_STRATEGY: none
script:
- dotnet nuget push ".artifacts/package/release/*.nupkg" -k $Nuget_Key -s https://api.nuget.org/v3/index.json --skip-duplicate
- dotnet nuget push "artifacts/package/release/*.nupkg" -k $Nuget_Key -s https://api.nuget.org/v3/index.json --skip-duplicate
when: manual
rules:
- if: $CI_COMMIT_BRANCH == "main" || $CI_COMMIT_BRANCH == "7.x" || $CI_COMMIT_TAG
Expand Down

0 comments on commit 14b13eb

Please sign in to comment.