try and trigger the workflow_dispatch event

This commit is contained in:
Paul Schneider
2025-06-11 14:28:00 +01:00
parent 836dae756f
commit 4c1235267c
5 changed files with 58 additions and 31 deletions

View File

@ -1,6 +1,7 @@
CONFIG=Debug
FRAMEWORK=net8.0
DESTDIR=/tmp/yavsc
clean:
dotnet clean
@ -23,4 +24,12 @@ src/Yavsc.Server/bin/$(CONFIG)/$(FRAMEWORK)/Yavsc.Server.dll:
src/Yavsc/bin/$(CONFIG)/$(FRAMEWORK)/Yavsc.dll:
dotnet build -p:Configuration=$(CONFIG) --project src/Yavsc/Yavsc.csproj
publish:
dotnet publish src/Yavsc/Yavsc.csproj -c Release -o $(DESTDIR)/srv/www/yavsc
install: publish
chown -R www-data $(DESTDIR)/srv/www/yavsc
chgrp -R www-data $(DESTDIR)/srv/www/yavsc
.PHONY: