Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Filesystem

Filesystem #45

Workflow file for this run

name: Build and upload tinos2 ISO
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: set up permissions
run: sudo chmod +x ./install_tools/ubuntu-install-deps.sh
- name: set up permissions
run: sudo chmod +x ./Build.sh
- name: install dependencies
run: ./install_tools/ubuntu-install-deps.sh
- name: make
run: ./Build.sh
- uses: actions/upload-artifact@v7
with:
name: tinos2ce
path: |
bin/*.iso
!bin/*.elf
!bin/kernel/
retention-days: 10