We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221867d commit e9fb8d8Copy full SHA for e9fb8d8
1 file changed
.github/workflows/release.yml
@@ -13,6 +13,7 @@ jobs:
13
Version:
14
outputs:
15
created: ${{ env.DAILY_VERSION_CREATED }}
16
+ version: ${{ env.DAILY_VERSION }}
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
@@ -68,8 +69,10 @@ jobs:
68
69
70
71
- uses: actions/download-artifact@v4
72
+ - name: Create release notes
73
+ run: echo "{\"release_notes\":{\"en-US\":\"https://github.com/${{ github.repository }}/releases/tag/${{ needs.Version.outputs.version }}\"}}" > /tmp/amo-metadata.json
74
- name: Upload build and source code
- run: npx web-ext@8 sign --channel listed
75
+ run: npx web-ext@8 sign --channel listed --amo-metadata /tmp/amo-metadata.json
76
working-directory: artifact
77
env:
78
WEB_EXT_API_KEY: ${{ secrets.WEB_EXT_API_KEY }}
0 commit comments