dev-env/.forgejo/workflows/action.yaml

28 lines
557 B
YAML
Raw Normal View History

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 13:16:46 +00:00
runs-on: docker
2025-01-31 05:37:10 +01:00
container:
2025-01-31 13:16:46 +00:00
image: docker:dind
2025-01-31 13:18:20 +00:00
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
2025-01-31 05:18:57 +01:00
2025-01-31 15:17:56 +01:00
# - uses: https://github.com/int128/kaniko-action@v1