This commit is contained in:
parent
0131d764b9
commit
18f533ce47
18
.gitea/workflows/build.yaml
Normal file
18
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user