-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4420e6a
commit 932a958
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |