iboard/.gitea/workflows/docker-build.yml
cheney a97c9265eb
Some checks are pending
Docker Build and Push / build-image (push) Waiting to run
修改 checkout
2026-04-05 16:20:36 +08:00

15 lines
280 B
YAML

name: Docker Build and Push
on: [push]
jobs:
build-image:
runs-on: workbench
steps:
- uses: https://gitea.com/actions/checkout@v4
- name: Build Docker image
run: docker build -t iboard:latest .
- name: List images
run: docker images