27 lines
557 B
YAML
27 lines
557 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
checkout:
|
|
runs-on: docker
|
|
container:
|
|
image: docker:dind
|
|
steps:
|
|
- name: Get git and podman
|
|
run: apk add git nodejs
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- uses: docker/login-action@v1
|
|
with:
|
|
registry: git.dekedin.me
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.TOKEN }}
|
|
- name: Push image
|
|
run: docker push devenv git.dekedin.me/deke/dev-env
|
|
|
|
|
|
|
|
# - uses: https://github.com/int128/kaniko-action@v1
|
|
|