ReFuel.StbImage/.gitea/workflows/build.yaml
H. Utku Maden 029375399f
Some checks failed
Build / build (push) Failing after 44s
Yet another attempt to fix CI builds.
2024-03-21 18:38:27 +03:00

24 lines
575 B
YAML

name: Build
run-name: Building docker container.
on:
workflow_dispatch:
push:
branches: stable
jobs:
build:
runs-on: ubuntu-latest
env:
QUIK_API_KEY: "${{secrets.QUIK_API_KEY}}"
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"