Skip to content

Update release workflow to build the reporter before packaging tools … #1113

Update release workflow to build the reporter before packaging tools …

Update release workflow to build the reporter before packaging tools … #1113

Workflow file for this run

name: ci
on:
push:
branches: ["0.4.x"]
pull_request:
branches: ["0.4.x"]
jobs:
build_and_test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build
- name: Publish
uses: ./.github/actions/publish
- name: Run Tests
uses: ./.github/actions/test
- name: Install Templates
run: dotnet new install src/IceRpc.Templates/bin/Debug/IceRpc.Templates.*.nupkg
shell: bash
- name: Test Templates
uses: ./.github/actions/test-templates
- name: Build Examples
uses: ./.github/actions/build-examples
- name: Build DocFX Examples
run: dotnet build docfx/examples/Examples.sln
shell: bash