Files
lunarfront-app/.gitea/workflows/build-devpod.yml
Ryan Moon b40bab0391
Some checks failed
Build & Release / build (push) Successful in 22s
Build Devpod / build (push) Failing after 5s
feat: add devpod image — code-server, Claude Code, bun, kubectl
2026-04-04 06:56:56 -05:00

31 lines
717 B
YAML

name: Build Devpod
on:
push:
branches: [main]
paths:
- Dockerfile.devpod
- entrypoint-devpod.sh
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: registry.digitalocean.com/lunarfront
DOCKER_HOST: tcp://localhost:2375
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to DOCR
run: echo "${{ secrets.DOCR_TOKEN }}" | docker login registry.digitalocean.com -u token --password-stdin
- name: Build and push devpod
run: |
docker build \
-t $REGISTRY/lunarfront-devpod:latest \
-f Dockerfile.devpod .
docker push $REGISTRY/lunarfront-devpod:latest