2024-03-19 20:27:21 +01:00
|
|
|
name: Build
|
|
|
|
run-name: Building docker container.
|
|
|
|
on:
|
2024-03-19 20:29:31 +01:00
|
|
|
workflow_dispatch:
|
2024-03-19 20:27:21 +01:00
|
|
|
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
|
2024-03-19 21:19:55 +01:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-03-19 20:27:21 +01:00
|
|
|
- name: Run Build Script
|
2024-03-21 16:38:27 +01:00
|
|
|
run: "bash ${{ gitea.workspace }}/build_ci_cd.sh"
|