-
-
Notifications
You must be signed in to change notification settings - Fork 141
35 lines (30 loc) · 764 Bytes
/
stable-8.1.yml
File metadata and controls
35 lines (30 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Stable OS 8
on:
push:
tags:
- "*"
schedule:
- cron: "0 0 1 * *"
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@v6
- name: Build and upload stable .iso
run: |
./workflows.sh etc/terraform-stable-8.1-azure-${{ matrix.arch }}.conf "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"