Skip to content

ARM support for stable workflow (#786) #584

ARM support for stable workflow (#786)

ARM support for stable workflow (#786) #584

Workflow file for this run

name: Daily OS 8
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_dispatch: {}
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- runner: ubuntu-24.04
arch: amd64
- runner: ubuntu-24.04-arm
arch: arm64
runs-on: ${{ matrix.runner }}
container:
image: debian:latest
volumes:
- /proc:/proc
options: --privileged
steps:
- name: Clone build scripts
uses: actions/checkout@v5
- name: Build and upload daily .iso
run: |
./workflows.sh etc/terraform-daily-8.0-azure-${{ matrix.arch }}.conf "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"