v0.1.2 — Project Restructure, Sprint Enhancements & Landing Page #3
Workflow file for this run
This file contains hidden or 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: 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 |