-
Notifications
You must be signed in to change notification settings - Fork 6
55 lines (47 loc) · 1.36 KB
/
build-image.yaml
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
name: build-fgw-image
on:
workflow_dispatch:
inputs:
tag:
description: 'pipy release tag'
required: true
type: string
jobs:
build-pipy:
name: Build fgw image
runs-on: ubuntu-22.04
steps:
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to DockerHub
uses: docker/[email protected]
with:
username: ${{ secrets.FLOMESH_DOCKERHUB_USERNAME }}
password: ${{ secrets.FLOMESH_DOCKERHUB_PASSWORD }}
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Docker meta
id: docker_meta
uses: crazy-max/[email protected]
with:
images: flomesh/fgw
tags: |
type=raw,${{ inputs.tag }}
type=sha,format=short
- name: Build and Push
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: |
PIPY_VERSION=${{ inputs.tag }}
GO_VERSION=1.20
LDFLAGS="-s -w"