docker-cross-compiler/.gitea/workflows/build.yaml
H. Utku Maden 18f533ce47
Some checks failed
Build / build (push) Failing after 1m12s
Add an action.
2024-03-19 18:17:44 +03:00

18 lines
435 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