musescore-downloader/.github/workflows/release.yml

78 lines
2.2 KiB
YAML

name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'The version number. default: the version number in package.json'
required: false
npm_tag:
description: 'The tag to register the published NPM package with'
required: false
default: 'latest'
ref:
description: 'The branch, tag or SHA to release from'
required: false
env:
VERSION: ${{ github.event.inputs.version }}
NPM_TAG: ${{ github.event.inputs.npm_tag }}
REF: ${{ github.event.inputs.ref || github.sha }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
ref: ${{ env.REF }}
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Set Env
run: |
VER=$(node -p "require('./package.json').version")
echo "VERSION=$VER" >> $GITHUB_ENV
if: ${{ !env.VERSION }}
- run: npm install
- name: Bump Version
run: npm version --allow-same-version --no-git-tag $VERSION
- run: npm run build
- run: npm run pack:ext
- name: NPM Publish
run: npm publish --tag $NPM_TAG
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # 0301...
- run: mkdir -p web-ext-artifacts
- name: Sign Firefox Extension
id: web_ext_sign
uses: kewisch/action-web-ext@v1
continue-on-error: true
with:
cmd: sign
source: dist/ext.zip
channel: unlisted
apiKey: ${{ secrets.AMO_SIGN_KEY }}
apiSecret: ${{ secrets.AMO_SIGN_SECRET }}
- run: |
cp dist/main.js musescore-downloader.user.js && \
cp dist/ext.zip musescore-downloader.webextension.zip
- name: Github Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGNED_WEB_EXT: ${{ steps.web-ext-build.outputs.target }}
run: |
hub release create \
-a "musescore-downloader.user.js" \
-a "musescore-downloader.webextension.zip" \
-a "$SIGNED_WEB_EXT" \
-m v$VERSION \
-t $REF \
v$VERSION