Generate Release #2
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: Sign and Release | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
test: | |
name: Sign and Release | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint WebExtension | |
run: npm run lint | |
# - name: Firefox — Sign WebExtension | |
# run: npm run sign | |
# timeout-minutes: 30 | |
# env: | |
# WEB_EXT_API_KEY: ${{ secrets.WEB_EXT_API_KEY }} | |
# WEB_EXT_API_SECRET: ${{ secrets.WEB_EXT_API_SECRET }} | |
# WEB_EXT_CHANNEL: unlisted | |
- name: "MOCK: Firefox — Sign WebExtension" | |
run: | | |
node -e "import fs from 'node:fs'; fs.mkdirSync('web-ext-artifacts', { recursive: true }); fs.writeFileSync('web-ext-artifacts/whatever-7.10.0.xpi', '');" | |
- name: Get Metadata | |
id: get-metadata | |
run: node dev/get_xpi_info.mjs | |
- name: Generate Github Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: New XKit ${{ steps.get-metadata.outputs.version }} | |
tag_name: v${{ steps.get-metadata.outputs.version }} | |
generate_release_notes: true | |
body: | | |
**NOTE:** Firefox may complain about getting a connection error when clicking the below XPI link. If it does, right-click the link and select "Save Link As...", then navigate to `about:addons` and drag the file onto that screen to install New XKit. | |
For Chrome: Install from the [Chrome Web Store](https://new-xkit-extension.tumblr.com/chrome) instead of here. | |
files: ${{ steps.get-metadata.outputs.filename }} | |
draft: true |