forked from Klemensas/chrome-extension-upload-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
34 lines (34 loc) · 835 Bytes
/
action.yml
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
name: Chrome Extension upload & publish
description: Action for uploading chrome extensions
branding:
icon: upload-cloud
color: green
inputs:
refresh-token:
description: Auth refresh token
required: true
app-id:
description: Extension application target id
required: true
client-id:
description: Token client id
required: true
client-secret:
description: Token client secret
required: true
file-name:
description: Name of zipped target upload file
required: true
publish:
description: True Or False to publish after upload
required: true
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.refresh-token }}
- ${{ inputs.client-id }}
- ${{ inputs.client-secret }}
- ${{ inputs.file-name }}
- ${{ inputs.app-id }}
- ${{ inputs.publish }}