Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fredimachado committed May 28, 2024
1 parent 23bd37f commit 3cd23f6
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI (main)

on:
push:
branches: [ "main" ]
paths-ignore:
- "**/*.md"
- "**/*.gitignore"
- "**/*.gitattributes"

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: Build
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false
DOTNET_MULTILEVEL_LOOKUP: 0
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true

steps:
- uses: actions/checkout@v4

- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: "./global.json"

- name: Install Aspire workload
run: dotnet workload install aspire

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore --configuration Release -p:SourceRevisionId=$GITHUB_SHA

- name: Pack (ci)
run: dotnet pack --configuration Release --output ./artifacts/ci --verbosity normal -p:SourceRevisionId=$GITHUB_SHA

- name: Upload artifacts (packages)
uses: actions/upload-artifact@v4
with:
name: nupkg
path: ./artifacts/**/*.nupkg
retention-days: 5

0 comments on commit 3cd23f6

Please sign in to comment.