Skip to content

Commit

Permalink
Release build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dtchepak committed Apr 20, 2024
1 parent 19b38fd commit 91b7287
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release build
on:
push:
tags:
- 'v*'
workflow_dispatch

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

0 comments on commit 91b7287

Please sign in to comment.