Files
dind/.gitea/workflows/cicd.yaml
bel 546730b639
Some checks failed
cicd / cicd (push) Failing after 5s
debug
2023-10-28 08:47:51 -06:00

23 lines
326 B
YAML

name: cicd
on:
push:
branches:
- main
jobs:
cicd:
name: cicd
runs-on: dind
steps:
- name: checkout
run: |
hostname
docker ps | grep $HOSTNAME
git clone ${{ github.repository }}
cd ./*/
pwd
find . -type d
sh ./build.sh
shell: sh