Skip to content

Commit

Permalink
Replace brandedoutcast/publish-nuget GitHub action since it is deprec…
Browse files Browse the repository at this point in the history
…ated
  • Loading branch information
jwthomson committed Feb 2, 2024
1 parent 46f774d commit e13bfe8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./src
- name: Pack
run: dotnet pack --configuration Release --no-build --output .
working-directory: ./src
if: ${{ github.ref == 'refs/heads/main' }}
- name: Publish
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: src/Feliz.AgGrid.fsproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
run: dotnet nuget publish "*.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
working-directory: ./src
if: ${{ github.ref == 'refs/heads/main' }}

0 comments on commit e13bfe8

Please sign in to comment.