H. Utku Maden
bb5b3c638d
Some checks failed
Build / build (push) Failing after 1m3s
Make more shell scripts. Fix removed old function. Add a workflow. Add docker-compose.yaml version. Update .gitea/workflows/build.yaml Trying to see if this helps. Add executable bit to shell scripts. Where did my files go? Fix executable bit of higher repository. Change build scripts slightly to maybe fix CI? Update .gitea/workflows/build.yaml List all files in home directory of the runner. Another silly push. List stuff. YEss another useless push. Yet another attempt to fix CI builds. This is getting out of hand. Chnage build script. Use unencrypted storage for the key because Nuget is nuget.
15 lines
335 B
Bash
Executable File
15 lines
335 B
Bash
Executable File
#!/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" \
|
|
--store-password-in-clear-text \
|
|
https://git.mixedup.dev/api/packages/QUIK/nuget/index.json
|
|
dotnet nuget push -s QUIK bin/*/*.nupkg
|