Make more shell scripts.

This commit is contained in:
H. Utku Maden 2024-03-19 22:27:08 +03:00
parent 1e5e9e6fb5
commit 8d2e9ed980
3 changed files with 14 additions and 1 deletions

1
.gitattributes vendored Normal file

@ -0,0 +1 @@
*.sh text eof=lf

@ -1,3 +1,4 @@
#!/bin/bash
cd $(dirname "$0")
Quik.Common/sh/quik_build_native.sh .
Quik.Common/sh/quik_build_native.sh .
dotnet build

11
publish.sh Normal file

@ -0,0 +1,11 @@
#!/bin/bash
cd $(dirname "$0")
if [ -z "$QUIK_API_KEY" ]
then
echo "Please define QUIK_API_KEY"
exit 1
fi
dotnet nuget add source -n QUIK -u themixedupstuff -p "$QUIK_API_KEY" https://git.mixedup.dev/api/packages/QUIK/nuget/index.json
dotnet nuget push -s QUIK