ReFuel.StbImage/.gitea/workflows/build.yaml
H. Utku Maden 8a0f1ba704
Some checks failed
Build / build (push) Failing after 42s
Trying to see if this helps.
2024-03-19 22:43:32 +03:00

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