-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: check authorize was expired or not when refresh info (#6)
1 parent
3204d38
commit 70c7665
Showing
4 changed files
with
62 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
submit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: latest | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: pnpm | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Zip extensions | ||
run: | | ||
pnpm zip | ||
- name: Submit to stores | ||
run: | | ||
pnpm wxt submit \ | ||
--chrome-zip .output/*-chrome.zip | ||
env: | ||
CHROME_EXTENSION_ID: ${{ secrets.CHROME_EXTENSION_ID }} | ||
CHROME_CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }} | ||
CHROME_CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }} | ||
CHROME_REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "rhodes-headquarters", | ||
"displayName": "罗德岛远程指挥部", | ||
"type": "module", | ||
"version": "0.1.0-beta.1", | ||
"publishVersion": "0.1.0.1", | ||
"version": "0.1.0-beta.2", | ||
"publishVersion": "0.1.0.2", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"description": "一款用于监控罗德岛运行状态的浏览器扩展", | ||
|
@@ -33,6 +33,7 @@ | |
"class-variance-authority": "^0.7.0", | ||
"clsx": "^2.1.0", | ||
"date-fns": "^3.6.0", | ||
"https-proxy-agent": "^7.0.4", | ||
"idb-keyval": "^6.2.1", | ||
"js-md5": "^0.8.3", | ||
"ofetch": "^1.3.4", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters