Skip to content

ci: use matrix build for multi-arch build (#156) #64

ci: use matrix build for multi-arch build (#156)

ci: use matrix build for multi-arch build (#156) #64

Workflow file for this run

# Copyright 2024 tison <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2024 - 2024, tison <[email protected]> and the HawkEye contributors
# SPDX-License-Identifier: Apache-2.0
name: Build and Push Docker Images
on:
push:
branches: ['main']
tags: ['v*.*']
workflow_dispatch:
jobs:
build-and-push-hawkeye:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, buildjet-4vcpu-ubuntu-2204-arm]
arch: [amd64, arm64]
include:
- os: ubuntu-latest
arch: amd64
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- name: Build and push by digest
uses: ./.github/actions/docker-push-by-digest
id: build
with:
name: hawkeye
file: Dockerfile
outputs:
digest-${{ matrix.arch }}: ${{ steps.build.outputs.digest }}

Check failure on line 49 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / Build and Push Docker Images

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 49, Col: 7): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.arch
release-hawkeye:
runs-on: ubuntu-latest
permissions:
packages: write
needs: build-and-push-hawkeye
steps:
- uses: actions/checkout@v4
- name: Merge and push manifest
uses: ./.github/actions/docker-release
with:
name: hawkeye
digests: >
${{ needs.build-and-push-hawkeye.outputs.digest-amd64 }}
${{ needs.build-and-push-hawkeye.outputs.digest-arm64 }}
release-native:
runs-on: ubuntu-latest
permissions:
packages: write
needs: build-and-push-hawkeye
steps:
- uses: actions/checkout@v4
- name: Merge and push manifest
uses: ./.github/actions/docker-release
with:
name: hawkeye-native
digests: >
ghcr.io/${{ github.repository_owner }}/hawkeye@${{ needs.build-and-push-hawkeye.outputs.digest-amd64 }}
ghcr.io/${{ github.repository_owner }}/hawkeye@${{ needs.build-and-push-hawkeye.outputs.digest-arm64 }}