dev-env/.forgejo/workflows/action.yaml
raphy ee25bf7e79
Some checks are pending
ci / checkout (push) Waiting to run
do not use kaniko
2025-01-31 15:17:56 +01:00

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