Skip to content

Docker Image CI

Docker Image CI #44

Workflow file for this run

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]
- [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 }}