vpnhide/.github/workflows/ci-image.yml
okhsunrog 12daca5c1a monorepo: combine vpnhide-zygisk, vpnhide (lsposed), and vpnhide-kmod
Unified repository for the complete Android VPN-hiding stack:
- zygisk/ — Rust Zygisk module (inline libc hooks via shadowhook)
- lsposed/ — Kotlin LSPosed module (Java API + system_server hooks)
- kmod/ — C kernel module (kretprobe hooks, invisible to anti-tamper)

CI workflows use path filters to build only the changed component.
2026-04-11 15:01:49 +03:00

40 lines
884 B
YAML

name: CI Image
on:
push:
branches: [main]
paths:
- .github/docker/ci/Dockerfile
- .github/workflows/ci-image.yml
schedule:
- cron: '0 3 1 * *'
workflow_dispatch:
permissions:
packages: write
contents: read
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .github/docker/ci
push: true
tags: ghcr.io/${{ github.repository }}/ci:latest
cache-from: type=gha
cache-to: type=gha,mode=max