2024-06-24 09:26:19 +08:00
|
|
|
name: Gitea Actions Demo
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build-docker:
|
2024-10-21 17:11:34 +08:00
|
|
|
runs-on: yfb-test
|
2024-06-24 09:26:19 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-10-14 09:36:04 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
2024-06-24 09:26:19 +08:00
|
|
|
|
|
|
|
- name: Docker build push
|
2024-10-21 16:57:09 +08:00
|
|
|
#uses: seepine/action-docker-build-push@v1
|
|
|
|
uses: ./.gitea/actions/action-docker-build-push
|
2024-10-14 09:36:04 +08:00
|
|
|
with:
|
|
|
|
push: false
|
2024-10-14 09:37:18 +08:00
|
|
|
file: ./docker/Dockerfile
|
2024-10-14 09:36:04 +08:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2024-10-18 17:17:52 +08:00
|
|
|
registry: git.zgfxrc.cn
|
|
|
|
username: huanghs
|
2024-06-24 09:29:07 +08:00
|
|
|
|
2024-06-24 09:32:25 +08:00
|
|
|
- run: echo The end
|