Compare commits

..

No commits in common. "ed462e05e193d4d3075d14722f2965f33ebc27ab" and "3e687d3c75b5c593c536134f74a69f502f6b7f3b" have entirely different histories.

4 changed files with 10 additions and 36 deletions

@ -1,22 +1,19 @@
name: Build
run-name: Build ReFuel.FreeType on Docker.
run-name: Build Quik.FreeType on Docker.
on:
workflow_dispatch:
push:
tags:
- '*'
branches: stable
jobs:
build:
runs-on: ubuntu-latest
container:
image: git.mixedup.dev/refuel/docker-cross-compiler
image: git.mixedup.dev/quik/docker-cross-compiler
env:
REFUEL_API_KEY: "${{secrets.REFUEL_API_KEY}}"
NUGET_USER_NAME: "${{vars.NUGET_USER_NAME}}"
NUGET_INDEX: "${{vars.NUGET_INDEX}}"
QUIK_API_KEY: "${{secrets.QUIK_API_KEY}}"
volumes:
- ${{ gitea.workspace }}:/home/refuel/src
- ${{ gitea.workspace }}:/home/quik/src
steps:
- name: Check repository out.
uses: actions/checkout@v3
@ -25,4 +22,4 @@ jobs:
- name: Run Build Script
run: "./build_native.sh"
- name: Publish Package
run: "./publish.sh ."
run: "Quik.Common/sh/publish.sh ."

3
.gitmodules vendored

@ -1,3 +1,6 @@
[submodule "freetype"]
path = freetype
url = https://git.mixedup.dev/QUIK/freetype.git
[submodule "Quik.Common"]
path = Quik.Common
url = https://git.mixedup.dev/QUIK/Quik.Common.git

1
Quik.Common Submodule

@ -0,0 +1 @@
Subproject commit fdfac9d95134fb5637bb2a9ec98ee11fe188230e

@ -1,27 +0,0 @@
#!/bin/bash
cd $(dirname "$0")
if [ -z "$REFUEL_API_KEY" ]
then
echo "Please define REFUEL_API_KEY"
exit 1
fi
if [ -z "$NUGET_USER_NAME" ]
then
echo "Please define NUGET_USER_NAME"
exit 1
fi
if [ -z "$NUGET_INDEX" ]
then
echo "Please define NUGET_INDEX"
exit 1
fi
dotnet nuget add source \
-n ReFuel -u "$NUGET_USER_NAME" -p "$REFUEL_API_KEY" \
--store-password-in-clear-text \
"$NUGET_INDEX"
dotnet nuget push -s ReFuel bin/*/*.nupkg