Skip to content

20250803: initial Golang-based userland with essential system components #32

20250803: initial Golang-based userland with essential system components

20250803: initial Golang-based userland with essential system components #32

Workflow file for this run

name: Continuous release
on:
workflow_dispatch:
push:
paths-ignore:
- "doc/**"
- ".github/workflows/*docs*.yml"
env:
BRANCH: ${{ endsWith(github.ref, 'stable') && 'stable' || (endsWith(github.ref, 'preview') && 'preview' || 'unstable') }}
jobs:
build:
name: build-image
runs-on: self-hosted
strategy:
matrix:
include:
- device: generic-x86_64
image: installer.iso
steps:
- uses: actions/checkout@v1
with:
token: ${{secrets.CI_TOKEN}}
submodules: true
- name: build-system-image
run: go run rlxos.dev/tools/ignite -device ${{matrix.device}} -cache-path ${{secrets.CACHE_PATH}} -clean
- uses: svenstaro/upload-release-action@v2
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
file: '${{ secrets.CACHE_PATH }}/${{matrix.device}}/images/${{matrix.image}}'
asset_name: 'rlxos-${{env.BRANCH}}-${{matrix.device}}-${{matrix.image}}'
tag: ${{env.BRANCH}}-continuous
overwrite: true
body: ${{ github.event.head_commit.message }}