Skip to content

Commit

Permalink
CI: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden committed Aug 22, 2023
1 parent ba2edb3 commit 70e9cd2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: windows-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: ✨ Setup .NET 6
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: 🚚 Restore
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: windows-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: ✨ Setup .NET 6
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: 🚚 Restore
Expand All @@ -22,17 +22,17 @@ jobs:
run: dotnet test src --configuration Release --no-build
- name: 📦 Pack
run: dotnet pack src --configuration Release --no-build
- name: 💾 Store Release Package
- name: 💾 Store
uses: actions/upload-artifact@v2
with:
name: Packages
retention-days: 1
path: |
src/FftSharp/bin/Release/*.nupkg
src/FftSharp/bin/Release/*.snupkg
- name: 🔑 Configure NuGet Secrets
- name: 🔑 Secret
uses: nuget/setup-nuget@v1
with:
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
- name: 🚀 Deploy Release Package
- name: 🚀 Deploy
run: nuget push "src\FftSharp\bin\Release\*.nupkg" -SkipDuplicate -Source https://api.nuget.org/v3/index.json

0 comments on commit 70e9cd2

Please sign in to comment.