ReFuel.StbImage/.gitea/workflows/build.yaml
themixedupstuff ed99bf210b
Some checks failed
Build / build (push) Failing after 44s
Update .gitea/workflows/build.yaml
2024-03-19 21:19:55 +01:00

29 lines
755 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 -la
- name: Run Build Script
run: docker-compose run build
working-directory: ${{ gitea.workspace }}
- name: Upload NuGet Package
run: "bash ${{ gitea.workspace }}/publish.sh"