2024-06-24 09:26:19 +08:00
|
|
|
name: Gitea Actions Demo
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Docker build push
|
|
|
|
uses: ./.gitea/actions/action-docker-build-push
|
2024-06-24 09:29:07 +08:00
|
|
|
|
2024-06-24 09:32:25 +08:00
|
|
|
- run: echo The end
|