feat: add metadata to docker image (#73) #34
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 and Push Multi-Arch Images | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*.*.*" | |
jobs: | |
get-tag: | |
runs-on: ubuntu-latest | |
name: Get tag | |
outputs: | |
tag: ${{ steps.parse-tag.outputs.tag }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: parse-tag | |
build: | |
needs: [get-tag] | |
strategy: | |
matrix: | |
arch: [amd64, arm64] | |
include: | |
- image: ubuntu-latest | |
- image: buildjet-2vcpu-ubuntu-2204-arm | |
arch: arm64 | |
runs-on: ${{ matrix.image }} | |
name: Build and publish (${{ matrix.arch }}) | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: merge-tags | |
with: | |
list: ${{ needs.get-tag.outputs.tag }} | |
suffixes: ${{ matrix.arch }} | |
glue_separator: "-" | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
with: | |
image_name: aica-technology/network-interfaces | |
image_tags: ${{ steps.merge-tags.outputs.list }} | |
build_flags: --build-arg VERSION=${{ needs.get-tag.outputs.tag }} | |
dockerfile_path: Dockerfile | |
token: ${{ secrets.GITHUB_TOKEN }} | |
multi-arch: | |
runs-on: ubuntu-latest | |
name: Merge into a multi-arch image | |
needs: [get-tag, build] | |
steps: | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
with: | |
image_name: aica-technology/network-interfaces | |
image_tags: ${{ needs.get-tag.outputs.tag }} | |
archs: amd64,arm64 | |
token: ${{ secrets.GITHUB_TOKEN }} |