Fix off-by-one error when constructing FIRST sets. (#309) #12
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: Release | |
on: | |
push: | |
branches: | |
- mainstream | |
- release/* | |
release: | |
types: [published] | |
jobs: | |
pack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore .NET local tools | |
run: dotnet tool restore | |
- name: Pack | |
run: dotnet run --project eng/Farkle.Build.fsproj -- -t NuGetPack | |
- name: Upload package artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuget-packages | |
path: ./bin | |
release: | |
needs: pack | |
environment: ${{ github.event_name == 'release' && 'release' || 'nightly' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Download package artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: nuget-packages | |
path: ./bin | |
- name: Publish | |
run: dotnet nuget push ./bin/*.nupkg --api-key ${{ secrets.NUGET_KEY }} --source ${{ vars.NUGET_FEED }} |