34 lines
991 B
YAML
34 lines
991 B
YAML
name: Nginx
|
|
on: [push]
|
|
jobs:
|
|
build-docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Make Dockerfile
|
|
run: echo "FROM seepine/alpine:17-jre" > 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/alpine:17-jre
|
|
|
|
- name: Make Dockerfile
|
|
run: echo "FROM seepine/alpine:8-jre" > 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/alpine:8-jre
|
|
|
|
- name: Run Success
|
|
run: echo Success. |