Skip to content

Trigger on any tag for now #4

Trigger on any tag for now

Trigger on any tag for now #4

Workflow file for this run

name: Build and Zip Release
on:
push:
tags:
- '*'
jobs:
build-and-zip:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run build script
run: npm run build:release
- name: Zip artifacts
run: zip -r release.zip ./build/src
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: release-artifact
path: release.zip