Skip to content

Release build workflow #1

Release build workflow

Release build workflow #1

Workflow file for this run

name: Release build
on:
push:
tags:
- 'v*'
workflow_dispatch

Check failure on line 6 in .github/workflows/release_build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release_build.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
env:
CONFIGURATION: Release
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Build package
run: dotnet run --project 'build/build.fsproj' Package
# used for documentation
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Build docs
run: dotnet run --project 'build/build.fsproj' Documentation