Skip to content

Fix typo in README.md (#598) #1

Fix typo in README.md (#598)

Fix typo in README.md (#598) #1

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- 'doc/**'
- 'readme.md'
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v3
- name: Test
run: dotnet test -c Release
- name: Test - Compiled
run: dotnet test --configuration Release /p:Compiled=true
- name: Pack
run: |
PACKAGE_PATH="${GITHUB_WORKSPACE}/artifacts"
dotnet pack --property:PackageOutputPath=$PACKAGE_PATH --configuration Release -p:PackageVersion=$GITHUB_RUN_NUMBER
- name: Publish on MyGet
run: dotnet nuget push "artifacts/*.nupkg" --api-key ${{ secrets.MYGET_API_KEY }} --skip-duplicate --source https://www.myget.org/F/fluid/api/v2/package