chore: Remove paket group fsformatting #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodule: recursive | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '7.0.100' | |
- name: Install dependencies | |
run: ./tools/install.ps1 | |
- name: Build site | |
run: | | |
pushd src/Website | |
npm run sass | |
popd | |
dotnet build -c Release | |
- name: Build Bolero | |
run: | | |
git submodule update --init --recursive | |
pushd ref/bolero | |
git checkout $BOLERO_BRANCH | |
git pull | |
./build.ps1 -t build -c Debug | |
popd | |
- name: Generate reference documentation | |
run: ./tools/gen-refdoc.ps1 | |
- name: Publish | |
uses: cpina/github-action-push-to-another-repository@main | |
if: ${{ github.ref == 'refs/heads/master' }} | |
env: | |
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
with: | |
source-directory: build | |
destination-github-username: fsbolero | |
destination-repository-name: fsbolero.github.io | |
user-email: [email protected] | |
target-branch: master | |
env: | |
BOLERO_BRANCH: releases/v0.22 |