-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ryzam/webapiargocd
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Simple Console Output | ||
|
||
on: [push] | ||
|
||
jobs: | ||
print-message: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
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 src/src.sln | ||
|
||
- name: Build project | ||
run: dotnet build src/src.sln --configuration Release | ||
|
||
- name: Print message | ||
run: echo "Hello, this is a simple GitHub Action!" |