-
Notifications
You must be signed in to change notification settings - Fork 9
46 lines (35 loc) · 1.08 KB
/
publish-pre-release.yml
File metadata and controls
46 lines (35 loc) · 1.08 KB
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
37
38
39
40
41
42
43
44
45
46
---
name: Publish Pre-Release
on:
release:
types:
- prereleased
permissions: {}
jobs:
publish-chrome-pre-release:
name: Publish Pre-Release to Chrome Web Store
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: 22
- run: pnpm install --frozen-lockfile
- run: pnpm run build:chrome:pre-release
- run: gh release upload "${RELEASE_TAG}" "$(ls .output/*-chrome.zip)"
env:
GITHUB_TOKEN: ${{ github.token }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
- run: |
pnpm wxt submit \
--chrome-zip .output/*-chrome.zip
env:
CHROME_EXTENSION_ID: adgcdimdkkaddeopcabokepmaihfhklb
CHROME_CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
CHROME_CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
CHROME_REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}