Skip to content

Merge branch 'main' of https://github.com/ambatubash69/gki-builder in… #60

Merge branch 'main' of https://github.com/ambatubash69/gki-builder in…

Merge branch 'main' of https://github.com/ambatubash69/gki-builder in… #60

Workflow file for this run

name: Build GKI
on:
workflow_dispatch:
inputs:
LTO:
description: 'LTO Type'
required: true
default: ''
type: choice
options:
- 'full'
- 'thin'
- 'none'
STATUS:
description: 'Build Status'
required: true
default: ''
type: choice
options:
- 'BETA'
- 'STABLE'
KSU:
description: 'KSU'
required: false
default: false
type: boolean
KSUNEXT:
description: 'KSU-Next (WIP)'
required: false
default: true
type: boolean
SUSFS4KSU:
description: 'SUSFS4KSU'
required: false
default: false
type: boolean
jobs:
build:
name: Build GKI Kernel
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 12
- name: Free up storage
uses: rokibhasansagar/slimhub_actions@main
- name: Build
run: |
[ -x "build.sh" ] || chmod a+x build.sh
[ -x "telegram_functions.sh" ] || chmod a+x telegram_functions.sh
if [ "${{ inputs.SUSFS4KSU }}" == "true" ]; then
export USE_KSU_SUSFS="yes"
fi
if [ "${{ inputs.KSU }}" == "true" ]; then
export USE_KSU="yes"
fi
<<<<<<< HEAD

Check failure on line 73 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 73
if [ "${{ inputs.KSUNEXT }}" == "true" ]; then
export USE_KSU_NEXT="yes"
fi
if [ -n "${{ inputs.NOTE }}" ]; then
export NOTE="${{ inputs.NOTE }}"
fi
=======
export STATUS="${{ inputs.STATUS }}"
export LTO_TYPE="${{ inputs.LTO }}"
>>>>>>> 22809a30708bd3fafb3af8462085262144382cf1
export chat_id="${{ secrets.CHAT_ID }}"
export token="${{ secrets.TOKEN }}"
./build.sh