17 lines
396 B
YAML
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
|