dev-env/.forgejo/workflows/action.yaml
raphy 3568b397d3
Some checks failed
ci / checkout (push) Failing after 29s
set image properly
2025-01-31 05:37:10 +01:00

22 lines
471 B
YAML

name: ci
on:
push:
jobs:
checkout:
runs-on: docker
container:
image: alpine:edge
steps:
- name: Get git and podman
run: apk add git podman
- name: Checkout
uses: actions/checkout@v4
- name: Login
run: podman login -u deke -p ${{ secrets.TOKEN }} git.dekedin.me
- name: Build
run: podman build -t devenv .
- name: Push image
run: podman push devenv git.dekedin.me/deke/dev-env