Skip to content

Commit

Permalink
Update build dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ryzam authored Jun 13, 2024
1 parent 649e645 commit fd3be6a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,18 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x' # Adjust the .NET version as necessary

- name: Restore dependencies
run: dotnet restore

- name: Build project
run: dotnet build --configuration Release

- name: Print message
run: echo "Hello, this is a simple GitHub Action!"

0 comments on commit fd3be6a

Please sign in to comment.