Skip to content

Commit

Permalink
chore(repo): add missing checkout step to deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
AJCJ1 committed Jan 22, 2025
1 parent 29c92be commit 6c0fb68
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/deploy_to_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,22 @@ jobs:
matrix:
dotnet-version: [6.0]
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v4

# Set up .NET
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
cache: true
cache-dependency-path: "./UrlboxSDK"

# Restore dependencies
- name: Restore dependencies
run: dotnet restore ./UrlboxSDK

# Build the project
- name: Build the project
run: dotnet build ./UrlboxSDK --configuration Release --no-restore
Expand Down

0 comments on commit 6c0fb68

Please sign in to comment.