Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mnao305 committed Feb 3, 2024
1 parent 4008e29 commit cbba77b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This action is a wrapper for [chrome-webstore-upload](https://github.com/fregant
| file-path | true | The path to the zip file. ex. `dist/hoge.zip` |
| extension-id | true | |
| client-id | true | |
| client-secret | true | | |
| client-secret | true | | |
| refresh-token | true | |
| glob | false | If you set it to true, you can specify the file as a glob pattern.<br>Please note that only the first match will be uploaded. |
| publish | false | If you set it to false, the extension will not be published. Default as true.<br>Use this option if you want to upload the extension but not publish it for testing. |
Expand Down Expand Up @@ -40,13 +40,13 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 20
- name: Build
run: |
npm ci
npm run build
- name: Upload & release
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v5.0.0
with:
file-path: dist/file.zip
extension-id: hogefuga(extension id)
Expand Down Expand Up @@ -74,13 +74,13 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 20
- name: Build
run: |
npm ci
npm run build
- name: Upload & release
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v5.0.0
with:
file-path: dist/*.zip
extension-id: hogefuga(extension id)
Expand Down Expand Up @@ -109,13 +109,13 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 20
- name: Build
run: |
npm ci
npm run build
- name: Upload & release
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v5.0.0
with:
file-path: dist/file.zip
extension-id: hogefuga(extension id)
Expand Down Expand Up @@ -144,13 +144,13 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 20
- name: Build
run: |
npm ci
npm run build
- name: Upload & release
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v5.0.0
with:
file-path: dist/file.zip
extension-id: hogefuga(extension id)
Expand Down

0 comments on commit cbba77b

Please sign in to comment.