ReFuel.StbImage/.gitea/workflows/build.yaml
H. Utku Maden 33000e5b54
Some checks failed
Build / build (push) Failing after 52s
List all files in home directory of the runner.
2024-03-21 18:13:33 +03:00

29 lines
754 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: "Where are my files????"
run: ls -laR
- name: Run Build Script
run: docker-compose run build
working-directory: ${{ gitea.workspace }}
- name: Upload NuGet Package
run: "bash ${{ gitea.workspace }}/publish.sh"