18 lines
298 B
YAML
18 lines
298 B
YAML
name: cicd
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
cicd:
|
|
name: cicd
|
|
# runs-on: registry-app.inhome.blapointe.com:5001/docker:latest # blocks
|
|
steps:
|
|
- run: |
|
|
curl -fsSL https://get.docker.com | sh
|
|
pwd
|
|
hostname
|
|
echo hello world
|
|
docker ps
|