diff --git a/.gitea/workflows/alpine-jre.yml b/.gitea/workflows/alpine-jre.yml new file mode 100644 index 0000000..6c30ff0 --- /dev/null +++ b/.gitea/workflows/alpine-jre.yml @@ -0,0 +1,34 @@ +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. \ No newline at end of file