Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
irwan.azam@cloud-connect.asia committed Jun 13, 2024
2 parents a53e897 + 7186a4c commit 97eb637
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dotnet.yml
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!"

0 comments on commit 97eb637

Please sign in to comment.