2025-01-31 01:14:32 +01:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2025-01-31 05:18:57 +01:00
|
|
|
checkout:
|
2025-01-31 01:15:39 +01:00
|
|
|
runs-on: docker
|
2025-01-31 05:37:10 +01:00
|
|
|
container:
|
2025-01-31 17:30:01 +01:00
|
|
|
image: docker:dind
|
2025-01-31 01:14:32 +01:00
|
|
|
steps:
|
2025-01-31 05:41:52 +01:00
|
|
|
- name: Get git and docker
|
2025-01-31 17:30:01 +01:00
|
|
|
run: apk add git nodejs
|
2025-01-31 05:18:57 +01:00
|
|
|
- name: Checkout
|
2025-01-31 01:14:32 +01:00
|
|
|
uses: actions/checkout@v4
|
2025-01-31 17:41:04 +01:00
|
|
|
- name: Kaniko build
|
|
|
|
uses: https://www.github.com/aevea/action-kaniko@master
|
|
|
|
with:
|
2025-01-31 17:49:31 +01:00
|
|
|
image: deke/dev-env
|
2025-01-31 17:41:04 +01:00
|
|
|
username: deke
|
|
|
|
password: ${{ secrets.TOKEN }}
|
|
|
|
registry: git.dekedin.me
|
|
|
|
|