-
-
Notifications
You must be signed in to change notification settings - Fork 112
35 lines (30 loc) · 849 Bytes
/
publish.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
name: Publish Extension
on:
workflow_dispatch:
jobs:
publish:
name: Publish Extension to Store
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download Extension
uses: robinraju/[email protected]
with:
latest: true
fileName: "*.zip"
- name: Get Release File Name
run: echo "RELEASE_FILE=$(ls | grep *.zip)" >> $GITHUB_ENV
- name: Test
run: echo ${{env.RELEASE_FILE}}
- name: Publish to store
uses: PlasmoHQ/[email protected]
with:
keys: ${{ secrets.EDGE_BPP_KEYS }}
edge-file: "${{env.RELEASE_FILE}}"
edge-notes: "https://github.com/ttop32/MouseTooltipTranslator"