This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
imp - brk|doc - Moved Platform to SpecProbe #2
Workflow file for this run
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: Prepare release draft | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Setup DocFX | |
run: dotnet tool install --global docfx | |
- name: Release Asset Preparation | |
run: | | |
chmod +x tools/*.sh | |
make doc | |
cd tools ; ./docgen-pack.sh ; cd .. | |
- name: Release Draft Making | |
uses: softprops/action-gh-release@v1 | |
with: | |
body: "This is a draft release. Fill this with a release snippet from the release sheet made internally." | |
draft: true | |
files: | | |
tools/*.zip |