build-fgw-nightly-image #449
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: build-fgw-nightly-image | |
on: | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
build-pipy: | |
name: Build fgw nightly 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,nightly | |
type=sha,format=short | |
- name: Build and Push | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ./Dockerfile.nightly | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} | |
build-args: | | |
GO_VERSION=1.20 | |
LDFLAGS="-s -w" | |