Skip to content

Commit e155219

Browse files
authored
Merge pull request #42 from jkone27/fix-publishing
fix publishing
2 parents ba79b19 + 3c6b93b commit e155219

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
# Setup dotnet, please use a global.json to ensure the right SDK is used!
2222
- name: Setup .NET
23-
uses: actions/setup-dotnet@v3
23+
uses: actions/setup-dotnet@v4
2424
# Restore the local tools
2525
- name: Restore tools
2626
run: dotnet tool restore
@@ -32,7 +32,7 @@ jobs:
3232
run: dotnet fsdocs build --properties Configuration=Release
3333
# Upload the static files
3434
- name: Upload documentation
35-
uses: actions/upload-pages-artifact@v2
35+
uses: actions/upload-pages-artifact@v3
3636
with:
3737
path: ./output
3838

@@ -43,4 +43,4 @@ jobs:
4343
steps:
4444
- name: Deploy to GitHub Pages
4545
id: deployment
46-
uses: actions/deploy-pages@v2
46+
uses: actions/deploy-pages@v4

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
# Main branch only
3232
if: github.ref == 'refs/heads/main'
3333
run: |
34-
dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_KEY}} --skip-duplicates
34+
dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_KEY}} --skip-duplicate

0 commit comments

Comments
 (0)