Files
dind/.gitea/workflows/cicd.yaml
Bel LaPointe 1d9627f24c
Some checks failed
cicd / pull (push) Failing after 6s
cicd / cicd (push) Successful in 16s
rename
2025-05-25 12:22:11 -06:00

34 lines
541 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
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