chore: update README #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.10 | |
cache: 'npm' | |
registry-url: https://registry.npmjs.org/ | |
- name: Rust setup (1.61) | |
uses: dtolnay/[email protected] | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Build v1 and generate v1 index.json | |
run: npm run --workspace stremio-official-addons build | |
- name: Build v2 | |
run: npm run --workspace official-addons-v2 build |