Update docs #291
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 and publish nuget packages | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "**/CHANGELOG.md" | |
- ".github/workflows/Build and publish nuget package.yml" | |
- "build.fsx" | |
jobs: | |
build-and-push-nuget-packages: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 9.0.x | |
- name: Run build.fsx | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
run: dotnet fsi build.fsx -- -p packages |