watcher/.gitea/workflows/build-push.yml
timerzz 6e53379cee
Some checks failed
Build image / build (push) Failing after 4s
feat 修改build流程
2024-04-12 14:22:34 +08:00

10 lines
243 B
YAML

name: Build image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: show dir
run: ls
- name: build
run: docker build -t ${{ vars.DOCKER_REGISTRY }}/${{ vars.IMAGE_NAME }}:latest -f Dockerfile .