Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-nef committed Apr 25, 2024
1 parent ee6bb9a commit 1224bf5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
env:
OUT_DIR: "/GoCardless/bin/Release"
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '2.1.x'
dotnet-version: '2.2.x'
- name: Restore
run: dotnet restore
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run Tests
run: dotnet test
- uses: actions/upload-artifact@v3.1.1
- uses: actions/upload-artifact@v4
with:
path: "GoCardless/bin/Release/*.nupkg"

Expand All @@ -33,10 +33,10 @@ jobs:
env:
OUT_DIR: "artifact"
steps:
- uses: actions/download-artifact@v3.0.1
- uses: actions/download-artifact@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '2.1.x'
dotnet-version: '2.2.x'
- name: Publish the library
run: dotnet nuget push artifact/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} -n --skip-duplicate

0 comments on commit 1224bf5

Please sign in to comment.