Files
dind/.gitea/workflows/cicd.yaml
Bel LaPointe f8286fd627
All checks were successful
cicd / pull (push) Successful in 5s
cicd / cicd (push) Successful in 33s
pull or ok
2025-05-25 12:27:44 -06:00

34 lines
549 B
YAML

name: cicd
on:
push:
branches:
- main
schedule:
- cron: '2 2 * * 0'
jobs:
pull:
name: pull
runs-on: dind
steps:
- name: pull
run: |
docker pull registry-app.inhome.blapointe.com:5001/bel/dind:latest || true
shell: sh
cicd:
name: cicd
runs-on: dind
steps:
- name: checkout
uses: actions/checkout@v3
- name: cicd
run: |
pwd
ls
find . -type d
ps aux www
which git
if ! sh ./build.sh; then
exit 1
fi