mirror of
https://github.com/Snigdha-OS/snigdhaos-arctic.git
synced 2025-09-20 19:45:01 +02:00
@eshanized: push via script
This commit is contained in:
42
.github/workflows/build.yml
vendored
42
.github/workflows/build.yml
vendored
@@ -1,4 +1,42 @@
|
|||||||
name: Build Snigdha OS ISO
|
name: Build ArchISO Stable
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 */21 * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
env:
|
||||||
|
SNIGDHAOS_VERSION: 'arctic'
|
||||||
|
ISO_VERSION: 'v5.0'
|
||||||
|
ISO_ARCHITECTURE: 'x86_64'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: snigdhaos/base-devel:latest
|
||||||
|
options: --privileged
|
||||||
|
steps:
|
||||||
|
- name: Checkout files
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Init Pacman Keys
|
||||||
|
run: |
|
||||||
|
rm -rf /etc/pacman.d/gnupg
|
||||||
|
pacman-key --init
|
||||||
|
pacman-key --populate
|
||||||
|
pacman -Syy
|
||||||
|
|
||||||
|
- name: Install rate-mirrors
|
||||||
|
run: pacman -Syyu --noconfirm rate-mirrors
|
||||||
|
|
||||||
|
- name: Install archiso
|
||||||
|
run: pacman -Syyu --noconfirm archiso git rsync
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: |
|
||||||
|
cd installation-scripts
|
||||||
|
./build-the-iso-the-first-time.sh
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user