Files
dind/.gitea/workflows/cicd.yaml
bel 52d41e9b68
Some checks failed
cicd / pull (push) Successful in 8s
cicd / cicd (push) Failing after 31s
pull
2023-10-28 09:23:41 -06:00

32 lines
505 B
YAML

name: cicd
on:
push:
branches:
- main
jobs:
pull:
name: pull
runs-on: dind
steps:
- name: pull
run: |
docker pull registry-app.inhome.blapointe.com:5001/docker: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