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.
26 lines
590 B
YAML
26 lines
590 B
YAML
name: Build
|
|
run-name: Building docker container.
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: stable
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: git.mixedup.dev/quik/docker-cross-compiler
|
|
env:
|
|
QUIK_API_KEY: "${{secrets.QUIK_API_KEY}}"
|
|
volumes:
|
|
- ${{ gitea.workspace }}:/home/quik/src
|
|
steps:
|
|
- name: Check repository out.
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Run Build Script
|
|
run: "./build_native.sh"
|
|
- name: Publish Package
|
|
run: "./publish.sh"
|