-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (28 loc) · 871 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Build and Zip Extension
on:
workflow_dispatch:
jobs:
build:
name: Build
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: 0.7.0
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
# - name: Zip the build contents
# run: cd dist && zip -r ../better-studres-crx.zip ./*
- name: Upload extension artifacts
uses: actions/upload-artifact@v4
with:
name: better-studres
path: dist