Skip to content

Merge pull request #1510 from njlr/bugfix/issue-1509-pre-whitespace-h… #123

Merge pull request #1510 from njlr/bugfix/issue-1509-pre-whitespace-h…

Merge pull request #1510 from njlr/bugfix/issue-1509-pre-whitespace-h… #123

Workflow file for this run

name: Build and Test and Publish (release)
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.203
- name: Restore .NET local tools
run: dotnet tool restore
- name: Restore packages
run: dotnet paket restore
- name: Build and test
run: dotnet fake build -t All
- name: Deploy documentation from master
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output
publish_branch: gh-pages
force_orphan: true
- name: Examine bin
run: ls -r bin
- name: Publish NuGets (if this version not published before)
run: dotnet nuget push bin\FSharp.Data.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_ORG_TOKEN_2020 }} --skip-duplicate
# NUGET_ORG_TOKEN_2020 is listed in "Repository secrets" in https://github.com/fsprojects/FSharp.Data/settings/secrets/actions
# note, the nuget org token expires around June 2021