-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
34 lines (28 loc) · 864 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: Build and sign WebExtension
author: Fabian Große
description: Builds and signs your WebExtension using Mozilla's web-ext tool.
branding:
icon: upload
color: orange
inputs:
amo-api-key:
description: Your key for Mozilla's API
required: true
amo-api-secret:
description: Your secret for Mozilla's API
required: true
web-ext-id:
description: UUID of your existing extension. Signing new extensions is not supported.
required: true
sign-listed:
description: Set to 'true' to list the extension on AMO. Defaults to 'false' for unlisted signing.
required: true
default: false
runs:
using: docker
image: Dockerfile
env:
WEB_EXT_API_KEY: ${{ inputs.amo-api-key }}
WEB_EXT_API_SECRET: ${{ inputs.amo-api-secret }}
WEB_EXT_ID: ${{ inputs.web-ext-id }}
SIGN_LISTED: ${{ inputs.sign-listed }}