17 lines
260 B
YAML
17 lines
260 B
YAML
name: cicd
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
cicd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://registry-app.inhome.blapointe.com:5001/docker:latest
|
|
run: |
|
|
pwd
|
|
hostname
|
|
echo hello world
|
|
docker ps
|