Skip to content

v0.1.2 — Project Restructure, Sprint Enhancements & Landing Page #3

v0.1.2 — Project Restructure, Sprint Enhancements & Landing Page

v0.1.2 — Project Restructure, Sprint Enhancements & Landing Page #3

Workflow file for this run

name: Release
on:
release:
types: [published]
permissions:
contents: write
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.32.1
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Build & ZIP Chrome
run: pnpm zip:chrome
- name: Build & ZIP Firefox
run: pnpm zip:firefox
- name: Build & ZIP Edge
run: pnpm zip:edge
- name: Upload ZIPs to release
uses: softprops/action-gh-release@v2
with:
files: .output/refined-github-projects-*.zip