Skip to content

Merge pull request #120 from dawedawe/fix_changelog_reader #167

Merge pull request #120 from dawedawe/fix_changelog_reader

Merge pull request #120 from dawedawe/fix_changelog_reader #167

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Build
run: dotnet fsi build.fsx
- name: Upload documentation
if: github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v1
with:
path: ./output
deploy:
runs-on: ubuntu-latest
needs: ci
if: github.ref == 'refs/heads/master'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1