Skip to content

changelog for v0.29.0 #443

changelog for v0.29.0

changelog for v0.29.0 #443

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: 'global.json'
# 9.0.101 because of https://github.com/dotnet/fsharp/issues/18298#issuecomment-2655277169
dotnet-version: |
8.x
9.0.101
- name: Build
run: dotnet fsi build.fsx
- name: Upload documentation
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: ./output
deploy:
runs-on: ubuntu-latest
needs: ci
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4