docker-cross-compiler/.gitea/workflows/build.yaml
H. Utku Maden ac01f7f2aa
All checks were successful
Build / build (push) Successful in 34s
[v1.0] Add automatic build action.
Try adding secrets to the workflow script.

Fix workflow.

Fix typo.

fix docker name conflict.

Removed cmake files from this repository and added node and meson to the apt packages list.

Update .gitea/workflows/build.yaml

node -> nodejs
2024-03-23 11:33:28 +03:00

23 lines
710 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: Log into Docker registry.
run: "echo ${{secrets.QUIK_API_KEY}} | docker login -u themixedupstuff --password-stdin git.mixedup.dev"
- name: Check repository out.
uses: actions/checkout@v3
- name: Build Docker Image
run: docker build -t git.mixedup.dev/quik/docker-cross-compiler .
- name: Upload Docker Image
run: docker push git.mixedup.dev/quik/docker-cross-compiler