From 2883c7faf8398abad0ca1ab682bdf8c437e63b03 Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Sat, 23 Mar 2024 10:59:23 +0300 Subject: [PATCH] Chnage build script. --- .gitea/workflows/build.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 45cc646..f213893 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,16 +8,18 @@ on: jobs: build: runs-on: ubuntu-latest - env: - QUIK_API_KEY: "${{secrets.QUIK_API_KEY}}" + 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: Update Package Repository. - run: apt update -y - - name: Gather dependencies. - run: apt install -y docker.io docker-compose - name: Check repository out. uses: actions/checkout@v3 with: submodules: recursive - name: Run Build Script - run: "bash ${{ gitea.workspace }}/build_ci_cd.sh" + run: "./build_native.sh" + - name: Publish Package + run: "./publish.sh"