Skip to content

build(zip.yml): hope this works #9

build(zip.yml): hope this works

build(zip.yml): hope this works #9

Workflow file for this run

name: Build and Collect ZIP
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Zip Directory
run: |
zip -r 01KSU_INST-KSU
- name: Upload ZIP artifact
uses: actions/upload-artifact@v4
with:
name: 01KSU_INST-KSU
path: 01KSU_INST-KSU
if-no-files-found: error
compression-level: 0