Skip to content

Merge pull request #17 from martinbryant/update-ag-grid #36

Merge pull request #17 from martinbryant/update-ag-grid

Merge pull request #17 from martinbryant/update-ag-grid #36

Workflow file for this run

name: Nuget-Publish
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.300
- name: Restore tools
run: dotnet tool restore
- name: Restore dependencies
run: dotnet restore
working-directory: ./src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./src
- name: Publish
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: src/Feliz.AgGrid.fsproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}