Make more shell scripts.
This commit is contained in:
parent
1e5e9e6fb5
commit
8d2e9ed980
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.sh text eof=lf
|
@ -1,3 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd $(dirname "$0")
|
cd $(dirname "$0")
|
||||||
Quik.Common/sh/quik_build_native.sh .
|
Quik.Common/sh/quik_build_native.sh .
|
||||||
|
dotnet build
|
||||||
|
11
publish.sh
Normal file
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
|
Loading…
Reference in New Issue
Block a user