release #181
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: release | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/build | |
| - name: dotnet pack | |
| run: dotnet pack -c Release /p:Version=${GITHUB_REF_NAME#v} -o drop/nuget | |
| - name: dotnet publish | |
| run: | | |
| dotnet publish src/docfx -f net8.0 -c Release /p:Version=${GITHUB_REF_NAME#v} --self-contained -r win-x64 -o drop/publish/win-x64 | |
| dotnet publish src/docfx -f net8.0 -c Release /p:Version=${GITHUB_REF_NAME#v} --self-contained -r linux-x64 -o drop/publish/linux-x64 | |
| dotnet publish src/docfx -f net8.0 -c Release /p:Version=${GITHUB_REF_NAME#v} --self-contained -r osx-x64 -o drop/publish/osx-x64 | |
| mkdir -p drop/bin | |
| - run: zip -r ../../bin/docfx-win-x64-${GITHUB_REF_NAME}.zip . | |
| working-directory: drop/publish/win-x64 | |
| - run: zip -r ../../bin/docfx-linux-x64-${GITHUB_REF_NAME}.zip . | |
| working-directory: drop/publish/linux-x64 | |
| - run: zip -r ../../bin/docfx-osx-x64-${GITHUB_REF_NAME}.zip . | |
| working-directory: drop/publish/osx-x64 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: nuget | |
| path: drop/nuget | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: bin | |
| path: drop/bin | |
| sign: | |
| runs-on: windows-latest | |
| needs: build | |
| steps: | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.x | |
| - uses: actions/download-artifact@v5 | |
| with: | |
| name: nuget | |
| path: drop/nuget | |
| - run: dotnet tool install --tool-path . sign --version 0.9.1-beta.24170.3 | |
| - run: > | |
| ./sign code azure-key-vault | |
| drop/nuget/**/*.* | |
| --description "Docfx code sign" | |
| --description-url "https://dotnet.github.io/docfx" | |
| --timestamp-url http://timestamp.digicert.com | |
| --azure-key-vault-url "${{ secrets.SIGN_KEY_VAULT_URL }}" | |
| --azure-key-vault-certificate "${{ secrets.SIGN_KEY_VAULT_CERTIFICATE }}" | |
| --azure-key-vault-tenant-id "${{ secrets.SIGN_KEY_VAULT_TENANT_ID }}" | |
| --azure-key-vault-client-id "${{ secrets.SIGN_KEY_VAULT_CLIENT_ID }}" | |
| --azure-key-vault-client-secret "${{ secrets.SIGN_KEY_VAULT_CLIENT_SECRET }}" | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: nuget-signed | |
| path: drop/nuget | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: sign | |
| permissions: | |
| contents: write | |
| id-token: write | |
| steps: | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.x | |
| - uses: actions/download-artifact@v5 | |
| with: | |
| name: nuget-signed | |
| path: drop/nuget | |
| - uses: actions/download-artifact@v5 | |
| with: | |
| name: bin | |
| path: drop/bin | |
| - name: NuGet login | |
| uses: NuGet/login@v1 | |
| id: nuget-login | |
| with: | |
| user: ${{ secrets.NUGET_USER }} | |
| - name: Publish NuGet packages | |
| run: | | |
| dotnet nuget push drop/nuget/*.nupkg --api-key "${{ steps.nuget-login.outputs.NUGET_API_KEY }}" --skip-duplicate --source https://api.nuget.org/v3/index.json | |
| - name: Upload GitHub release | |
| run: | | |
| gh release upload --repo dotnet/docfx ${GITHUB_REF_NAME} drop/bin/docfx-win-x64-${GITHUB_REF_NAME}.zip | |
| gh release upload --repo dotnet/docfx ${GITHUB_REF_NAME} drop/bin/docfx-linux-x64-${GITHUB_REF_NAME}.zip | |
| gh release upload --repo dotnet/docfx ${GITHUB_REF_NAME} drop/bin/docfx-osx-x64-${GITHUB_REF_NAME}.zip | |
| env: | |
| GH_TOKEN: ${{ github.token }} |