Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter authored Dec 14, 2024
1 parent 41aafa9 commit 7f0ec4a
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

strategy:
matrix:
project:
- Riverside.Markup
- Riverside.Markup.CompilerServices
- Riverside.Markup.Controls
- Riverside.Markup.InteropServices
# Add more projects here as needed

outputs:
normalized_name: ${{ steps.normalize_name.outputs.normalized_name }}

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

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'

- name: Restore dependencies
run: dotnet restore src/${{ matrix.project }}/${{ matrix.project }}.csproj

- name: Build project
run: dotnet build src/${{ matrix.project }}/${{ matrix.project }}.csproj --configuration Release --no-restore

- name: Pack project
run: dotnet pack src/${{ matrix.project }}/${{ matrix.project }}.csproj --configuration Release --no-build -o ./output

- name: Normalize project name
id: normalize_name
run: echo "normalized_name=$(echo src/${{ matrix.project }}/${{ matrix.project }} | tr '/' '-')" >> $GITHUB_ENV
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Packages
path: ./output/*.nupkg

0 comments on commit 7f0ec4a

Please sign in to comment.