24 lines
488 B
YAML
24 lines
488 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
checkout:
|
|
runs-on: docker
|
|
container:
|
|
image: docker:dind
|
|
steps:
|
|
- name: Get git and docker
|
|
run: apk add git nodejs
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Kaniko build
|
|
uses: https://www.github.com/aevea/action-kaniko@master
|
|
with:
|
|
image: git.dekedin.me/deke/deke-env
|
|
username: deke
|
|
password: ${{ secrets.TOKEN }}
|
|
registry: git.dekedin.me
|
|
|
|
|