Docker Image CI #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
workflow_dispatch: | |
inputs: | |
buildArtifact: | |
description: 'choice build artifact' | |
required: true | |
type: choice | |
options: | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- node | |
imagesRepositoryName: | |
description: 'choice images repository name' | |
required: true | |
type: choice | |
options: | |
- php | |
- node | |
tags: | |
description: 'set images tags' | |
default: 'latest' | |
required: true | |
jobs: | |
build: | |
environment: docker-token | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Docker Login | |
uses: docker/[email protected] | |
with: | |
username: zjslqshqz | |
password: ${{ secrets.LOGIN_TOKEN }} | |
- name: Docker Setup QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build and push Docker images | |
uses: docker/[email protected] | |
with: | |
context: ./${{ inputs.buildArtifact }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: zjslqshqz/${{ inputs.imagesRepositoryName }}:${{ inputs.tags }} |