Files
z-bar-qt/.gitea/workflows/ci-image.yml
T
AramJonghu 4061cc60a3
Build (C++) / build (pull_request) Failing after 1s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 11s
Python / lint-format (pull_request) Successful in 17s
Python / test (pull_request) Successful in 31s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m7s
CI/CD for build test; includes dockerbuild to avoid docker redownloading deps. avoid-c-arrays removed
2026-06-29 00:03:13 +02:00

23 lines
458 B
YAML

name: Rebuild CI Image
on:
schedule:
- cron: '0 6 * * 0'
workflow_dispatch:
jobs:
build:
runs-on: alpine
env:
IMAGE: git.zach-dev.cc/zach/zshell-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build image
run: docker build -t "$IMAGE" -f ci/Dockerfile .
- name: Push image
run: docker push "$IMAGE"