Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Build scaffold

Build scaffold #5

Workflow file for this run

name: Generate tp-scaffold files
on:
workflow_dispatch:
inputs:
projects:
description: 'Projects to generate, separated by commas'
required: true
default: 'kernel,memoria,cpu,filesystem'
static:
description: 'Static libs to generate, separated by commas'
required: true
default: 'utils'
branch:
description: 'Branch to push the generated files'
required: true
default: 'scaffold'
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Generate tp-scaffold files
run: bun ./scripts/scaffold.js --dest tp-scaffold --projects "${{ github.event.inputs.projects }}" --staticLibs "${{ github.event.inputs.static }}"
- name: Push to tp-scaffold branch
working-directory: tp-scaffold
run: |
git init
git add .
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Generate tp-scaffold files"
git branch -M ${{ github.event.inputs.branch }}
git remote add origin "https://[email protected]/${{ github.repository }}"
git push -f -u origin ${{ github.event.inputs.branch }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}