-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (35 loc) · 972 Bytes
/
release.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
35
36
37
38
39
name: "Release"
on:
push:
tags:
- '*.*.*'
jobs:
sign:
name: "Release"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
- name: "web-ext build"
id: web-ext-build
uses: kewisch/action-web-ext@v1
with:
cmd: build
source: .
# - name: "web-ext sign"
# id: web-ext-sign
# uses: kewisch/action-web-ext@v1
# with:
# cmd: sign
# source: ${{ steps.web-ext-build.outputs.target }}
# channel: unlisted
# apiUrlPrefix: https://addons.thunderbird.net/api/v4
# apiKey: ${{ secrets.AMO_SIGN_KEY }}
# apiSecret: ${{ secrets.AMO_SIGN_SECRET }}
# timeout: 900000
# - name: "Create Release"
# uses: softprops/action-gh-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# files: ${{ steps.web-ext-sign.outputs.target }}