Skip to content

build-aarch64

build-aarch64 #121

Workflow file for this run

# Copyright 2025 The Trivalent Authors
#
# 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.
name: build-aarch64
permissions: {}
on:
workflow_dispatch: # allow using non-latest cache version
inputs:
override_version:
description: "Override version?"
type: string
required: false
default: ""
jobs:
build-aarch64:
name: Build aarch64
if: github.triggering_actor == 'royaloughtness'
strategy:
fail-fast: false
uses: ./.github/workflows/build.yml
with:
arch: "aarch64"
override_version: ${{ inputs.override_version }}
permissions:
actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
secrets:
RPM_SIGNING_KEY: ${{ secrets.RPM_SIGNING_KEY }}
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}