docker-cross-compiler/.gitea/workflows/build.yaml
H. Utku Maden eb7d9d0b94
All checks were successful
Build / build (push) Successful in 4m29s
Fix workflow.
2024-03-19 18:21:24 +03:00

18 lines
437 B
YAML

name: Build
run-name: Building docker container.
on:
push:
branches: stable
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update Package Repository.
run: apt update -y
- name: Gather dependencies.
run: apt install -y docker.io
- name: Check repository out.
uses: actions/checkout@v3
- name: Build Docker Image
run: docker build -t quik/docker-cross-compiler .