19 lines
418 B
YAML
19 lines
418 B
YAML
name: Gitea Actions Demo
|
|
on: [push]
|
|
jobs:
|
|
build-docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Docker build push
|
|
uses: seepine/action-docker-build-push@v1
|
|
with:
|
|
push: false
|
|
file: ./docker/Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
- run: echo The end |