Adds MessageQueue sample to doc #42
This file contains 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: Kook.Net on Release | |
on: | |
push: | |
branches: [ doc ] | |
pull_request: | |
branches: [ doc ] | |
release: | |
types: [ published ] | |
jobs: | |
build_and_test: | |
name: Build and Test | |
strategy: | |
matrix: | |
target: [ windows-latest, ubuntu-latest, macOS-latest ] | |
uses: ./.github/workflows/build-test.yml | |
with: | |
target: ${{ matrix.target }} | |
dotnet-version: 8.0.x | |
call_doc: | |
name: Generate Documentation | |
needs: build_and_test | |
uses: ./.github/workflows/doc.yml | |
with: | |
dotnet-version: 8.0.x | |
secrets: | |
DOC_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} |