Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/publish-internal.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Publish to Chrome WebStore (Trusted Testers)

on:
Expand All @@ -9,7 +8,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
Expand All @@ -26,7 +25,7 @@ jobs:
fi
- uses: actions/setup-node@v4
with:
node-version: "20.16.0"
node-version: '20.16.0'
cache: 'yarn'
- name: Install deps via Yarn
run: yarn setup
Expand All @@ -52,12 +51,12 @@ jobs:
- name: Archive the build artifact
uses: actions/upload-artifact@v4
with:
name: rainbowbx-v${{ env.release_version }}
name: orbyplaygroundbx-v${{ env.release_version }}
path: build/
- name: Submit to the chrome webstore
uses: PlasmoHQ/bpp@v3
with:
artifact: ./rainbowbx.zip
artifact: ./orbyplaygroundbx.zip
keys: ${{ secrets.BPP_KEYS_INTERNAL }}
- name: Commit changes
uses: EndBug/add-and-commit@v9
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/publish-prod-chrome.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

name: Publish to Chrome WebStore (Production)

on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
Expand All @@ -16,7 +15,7 @@ jobs:
token: ${{ secrets.REPO_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: "20.16.0"
node-version: '20.16.0'
cache: 'yarn'
- name: Install deps via Yarn
run: yarn setup
Expand All @@ -36,14 +35,14 @@ jobs:
- name: Archive the build artifact
uses: actions/upload-artifact@v4
with:
name: rainbowbx-chrome-v${{ env.release_version }}
name: orbyplaygroundbx-chrome-v${{ env.release_version }}
path: build/
- name: Zip it
run: yarn zip
- name: Submit to the chrome webstore
uses: PlasmoHQ/bpp@v3.5.0
with:
artifact: ./rainbowbx.zip
artifact: ./orbyplaygroundbx.zip
keys: ${{ secrets.BPP_KEYS_PROD }}
- name: Create Sentry release
uses: getsentry/action-release@v1
Expand All @@ -57,5 +56,3 @@ jobs:
sourcemaps: ./build
version: ${{ env.release_version }}
url_prefix: 'chrome-extension://opfgelmcmbiajamepnmloijbpoleiama'


6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ screenshots/
anvil*.log

rainbowbx.xpi
orbyplaygroundbx.xpi
orbyplaygroundbx.zip

.idea/**

static/data
static/data

.tool-versions
Loading