Skip to content

upd - Updated libraries #14

upd - Updated libraries

upd - Updated libraries #14

Workflow file for this run

name: Prepare release draft
on:
push:
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
attestations: 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
cd tools ; ./pack.sh ; cd ..
make doc
cd tools ; ./docgen-pack.sh ; cd ..
- name: Binary Attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: 'tools/*.zip'
- 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