Skip to content

Commit 932a958

Browse files
authored
Build Stable 8.0 (#720)
1 parent 4420e6a commit 932a958

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

.github/workflows/stable-8.0

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: stable
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
schedule:
8+
- cron: "0 0 1 * *"
9+
workflow_dispatch: {}
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-24.04
14+
15+
container:
16+
image: debian:latest
17+
volumes:
18+
- /proc:/proc
19+
options: --privileged
20+
21+
steps:
22+
- name: Clone build scripts
23+
uses: actions/checkout@v4
24+
25+
- name: Build and upload stable .iso
26+
run: |
27+
./workflows.sh etc/terraform-stable-8.0-azure.conf "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"

etc/terraform-stable-8.0-azure.conf

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# target architecture - i386, amd64 or all
2+
ARCH="amd64"
3+
4+
# base codename
5+
BASECODENAME="noble"
6+
7+
# base version
8+
BASEVERSION="24.04"
9+
10+
# distribution codename
11+
CODENAME="circe"
12+
13+
# distribution version
14+
VERSION="8.0"
15+
16+
# distribution channel
17+
CHANNEL="stable"
18+
19+
# distribution name
20+
NAME="elementary OS"
21+
22+
# mirror to fetch packages from
23+
MIRROR_URL="http://azure.archive.ubuntu.com/ubuntu/"
24+
25+
# use HWE kernel and packages?
26+
HWE_KERNEL="yes"
27+
HWE_X11="no"
28+
29+
# use appcenter ppa
30+
INCLUDE_APPCENTER=""
31+
32+
# suffix for generated .iso files
33+
OUTPUT_SUFFIX="rc"

0 commit comments

Comments
 (0)