Remove dotnet-publish-package (#4494)

Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
This commit is contained in:
Xiaoyun Zhang 2024-12-03 10:52:04 -08:00 committed by GitHub
parent 3b311707fd
commit a076385044
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +0,0 @@
name: '[AutoGen nuget] Publish all packages'
on:
push:
paths:
- 'dotnet/src/**'
- 'protos/**'
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
init:
runs-on: ubuntu-latest
outputs:
version_suffix: ${{ steps.set_version_suffix.outputs.VERSION_SUFFIX }}
version_prefix: '0.0.1'
steps:
- name: Set version suffix
id: set_version_suffix
run: echo "VERSION_SUFFIX=$(date +%Y%m%d%H%M%S)" >> "$GITHUB_OUTPUT"
build-test-packages:
uses: ./.github/workflows/dotnet-build-test-packages.yml
needs: init
secrets: inherit