Skip to content

Build and Zip Extension #57

Build and Zip Extension

Build and Zip Extension #57

Workflow file for this run

name: Build and Zip Extension
on:
workflow_dispatch:
jobs:
build-chrome:
name: Build Chrome extension
timeout-minutes: 15
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Bun environment
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.42
- name: Install dependencies
run: bun install
- name: Build Chrome
run: bun run build
- name: Upload Chrome extension artifacts
uses: actions/upload-artifact@v4
with:
name: better-studres-chrome
path: dist/
build-firefox:
name: Build Firefox extension
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Bun environment
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.42
- name: Install dependencies
run: bun install
- name: Build Firefox
run: bun run build:firefox
- name: Upload Firefox extension artifacts
uses: actions/upload-artifact@v4
with:
name: better-studres-firefox
path: dist/