Skip to content

Make the app-index generator. #1

Make the app-index generator.

Make the app-index generator. #1

Workflow file for this run

name: rt-downloads
on:
push:
branches:
- main
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v2
- name: 📋 Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 18
- name: 🔨 Build App Index
run: cd app-index && npm install && node generate
- name: 📦 Upload App Index
uses: actions/upload-artifact@v4
with:
name: "app_index.json"
path: "site/static/api/apps/index.json"