Skip to content

Follow changes made in the backend #10

Follow changes made in the backend

Follow changes made in the backend #10

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: make
- name: Prepare artifact
run: |
ARGS=
cd output
for subdir in *; do
[ -d "$subdir" -a "$subdir" != intermediate ] && ARGS="$ARGS $subdir"
done
tar cvf iDom-fe.tar $ARGS
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: iDom-fe
path: output/iDom-fe.tar