Skip to content

Commit

Permalink
Build Stable 8.0 (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit authored Sep 16, 2024
1 parent 4420e6a commit 932a958
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stable-8.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: stable

on:
push:
tags:
- "*"
schedule:
- cron: "0 0 1 * *"
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-24.04

container:
image: debian:latest
volumes:
- /proc:/proc
options: --privileged

steps:
- name: Clone build scripts
uses: actions/checkout@v4

- name: Build and upload stable .iso
run: |
./workflows.sh etc/terraform-stable-8.0-azure.conf "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"
33 changes: 33 additions & 0 deletions etc/terraform-stable-8.0-azure.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# target architecture - i386, amd64 or all
ARCH="amd64"

# base codename
BASECODENAME="noble"

# base version
BASEVERSION="24.04"

# distribution codename
CODENAME="circe"

# distribution version
VERSION="8.0"

# distribution channel
CHANNEL="stable"

# distribution name
NAME="elementary OS"

# mirror to fetch packages from
MIRROR_URL="http://azure.archive.ubuntu.com/ubuntu/"

# use HWE kernel and packages?
HWE_KERNEL="yes"
HWE_X11="no"

# use appcenter ppa
INCLUDE_APPCENTER=""

# suffix for generated .iso files
OUTPUT_SUFFIX="rc"

0 comments on commit 932a958

Please sign in to comment.