dev-env/.forgejo/workflows/action.yaml
raphy 7a3501b64d
Some checks failed
ci / checkout (push) Failing after 12s
add nodejs
2025-01-31 05:38:16 +01:00

22 lines
478 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 nodejs
- 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