20 lines
519 B
YAML
20 lines
519 B
YAML
|
|
||
|
name: Nginx
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
build-docker:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- run: echo "FROM nginx:1.25-alpine-slim" > Dockerfile
|
||
|
|
||
|
- name: Docker build push
|
||
|
uses: seepine/action-docker-build-push@v1
|
||
|
with:
|
||
|
file: ./Dockerfile
|
||
|
platforms: linux/amd64,linux/arm64
|
||
|
registry: git.zgfxrc.cn
|
||
|
username: registry
|
||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||
|
tags: git.zgfxrc.cn/registry/nginx:1.25-alpine-slim
|
||
|
|
||
|
- run: echo Success.
|