initial commit

This commit is contained in:
2026-01-16 00:34:49 +01:00
Unverified
commit e9c0a10ac1
12 changed files with 581 additions and 0 deletions

24
.github/workflows/push_dev.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Build NuGet package on dev branch push
on:
push:
branches:
- "dev"
paths:
- "TimetableDesigner.Backend.Events.Providers.RabbitMQ**"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 10.0.x
- name: Add source
run: dotnet nuget add source --username TimetableDesigner --password ${{secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/TimetableDesigner/index.json"
- name: Build
run: dotnet build