mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Get git commit
|
|
id: get_git_commit
|
|
run: echo "GIT_COMMIT=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
- name: Get version
|
|
id: get_version
|
|
run: echo "VERSION=$(git describe --tags --dirty)" >> $GITHUB_ENV
|
|
- name: Get Repo Owner
|
|
id: get_repo_owner
|
|
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
|
|
|
|
- name: Build ${{ matrix.svc }}
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./gateway
|
|
file: ./gateway/Dockerfile
|
|
outputs: "type=image,push=false"
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
build-args: |
|
|
VERSION=${{ env.TAG }}
|
|
GIT_COMMIT=${{ github.sha }}
|
|
tags: |
|
|
ghcr.io/${{ env.REPO_OWNER }}/gateway:${{ github.sha }}
|
|
ghcr.io/${{ env.REPO_OWNER }}/gateway:latest
|