lightscale-admin/.forgejo/workflows/build-local-image.yml
centra 7aca1e5a6a
Some checks failed
build-local-image / build (push) Failing after 0s
Build image from remote git context on Forgejo runner
2026-02-14 15:50:37 +09:00

17 lines
396 B
YAML

name: build-local-image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: nix-host
steps:
- name: Build local image on runner host
run: docker build --pull -t lightscale-admin:local "https://git.centraworks.net/centra/lightscale-admin.git#${GITHUB_SHA}"
- name: Show built image
run: docker image ls lightscale-admin:local