Skip to content

Commit 27e3769

Browse files
authored
fix build script + bump version (#580)
1 parent dbea940 commit 27e3769

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/dotnet-build.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,21 @@ jobs:
121121
--timestamp-url "http://timestamp.digicert.com"
122122
--publisher-name ".NET Foundation"
123123
--description "Windows Community Toolkit"
124-
--description-url "https://developer.microsoft.com/en-us/windows/uwp-community-toolkit"
124+
--description-url "https://github.com/CommunityToolkit/Lottie-Windows"
125125
--azure-key-vault-url "${{ secrets.SIGN_KEY_VAULT_URL }}"
126126
--azure-key-vault-client-id ${{ secrets.SIGN_CLIENT_ID }}
127127
--azure-key-vault-client-secret "${{ secrets.SIGN_CLIENT_SECRET }}"
128128
--azure-key-vault-tenant-id ${{ secrets.SIGN_TENANT_ID }}
129129
--azure-key-vault-certificate "${{ secrets.SIGN_CERTIFICATE }}"
130130
--verbosity Information
131131
132+
- name: Push Signed Packages
133+
run: |
134+
dotnet nuget add source https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-MainLatest/nuget/v3/index.json `
135+
--name MainLatest `
136+
--username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }}
137+
dotnet nuget push "**/*.nupkg" --api-key dummy --source MainLatest --skip-duplicate
138+
132139
- name: Publish Packages
133140
uses: actions/upload-artifact@v4
134141
with:
@@ -138,7 +145,7 @@ jobs:
138145
${{ github.workspace }}/packages/**/*.nupkg
139146
140147
release:
141-
if: ${{ startsWith(github.ref, 'refs/tags/') }}
148+
if: ${{ startsWith(github.ref, 'refs/heads/rel/') }}
142149
needs: [sign]
143150
environment: nuget-release-gate # This gates this job until manually approved
144151
runs-on: ubuntu-latest

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "8.2.250523-rc.{height}",
2+
"version": "8.2.250604-rc.{height}",
33
"publicReleaseRefSpec": [
44
"^refs/heads/main$", // we release out of main
55
"^refs/heads/dev$", // we release out of dev

0 commit comments

Comments
 (0)