Skip to content

Commit

Permalink
Merge pull request #19396 from unoplatform/dev/jela/adjust-tagging
Browse files Browse the repository at this point in the history
ci: Adjust tagging and publishing
  • Loading branch information
jeromelaban authored Jan 30, 2025
2 parents c78e431 + f8e13d9 commit 14058fa
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions build/ci/.azure-devops-publish-nuget-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,14 @@ jobs:
- task: DownloadPipelineArtifact@2
inputs:
artifactName: 'NuGet_Packages'
itemPattern: |
**/*.nupkg;
!*Private*.nupkg
targetPath: '$(Pipeline.Workspace)/NuGet_Packages'
displayName: Download artifacts

- template: templates/nuget-publish-public.yml

- job: Tag_Release
displayName: 'Set git tag'
dependsOn: 'Nuget_Prod_Nuget_Org'

pool:
vmImage: ${{ parameters.vmImage }}
Expand All @@ -39,6 +37,6 @@ jobs:
- script: |
git config user.email "[email protected]"
git config user.name "Uno DevOps"
git tag '$(GitVersion.MajorMinorPatch)'
git push origin '$(GitVersion.MajorMinorPatch)'
git tag $(GitVersion.MajorMinorPatch)
git push origin $(GitVersion.MajorMinorPatch)
displayName: "Tag and push to GitHub"

0 comments on commit 14058fa

Please sign in to comment.