Skip to content

chore: rename release workflow to publish-release.yml #18

chore: rename release workflow to publish-release.yml

chore: rename release workflow to publish-release.yml #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Package Extension
working-directory: packages/extension
run: pnpm zip
- name: List Extension Packages
run: |
find packages/extension/.output -maxdepth 1 -name "*-chrome.zip" -print
- name: Prepare Extension Artifact
run: |
mkdir -p artifacts
cp packages/extension/.output/*-chrome.zip artifacts/openbridge-extension-chrome.zip
- name: Upload Extension Artifact
uses: actions/upload-artifact@v4
with:
name: openbridge-extension-chrome
path: artifacts/openbridge-extension-chrome.zip
if-no-files-found: error
retention-days: 30