-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (48 loc) · 1.31 KB
/
docker-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Docker Image CI
on:
workflow_dispatch:
inputs:
buildArtifact:
description: 'choice build artifact'
required: true
type: choice
options:
- 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 }}