Publish Extension #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |