Files
dind/.gitea/workflows/cicd.yaml
bel a89ebbf558
Some checks failed
cicd / cicd (push) Failing after 7s
give up
2023-10-28 09:22:11 -06:00

24 lines
334 B
YAML

name: cicd
on:
push:
branches:
- main
jobs:
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