Skip to content

chore: bump version to v1.0.1 #11

chore: bump version to v1.0.1

chore: bump version to v1.0.1 #11

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
test:
uses: ./.github/workflows/test.yml
secrets: inherit
release:
needs: test
runs-on: macos-latest
timeout-minutes: 10
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build extensions
run: npm run build
env:
VERSION_TAG: ${{ github.ref_name }}
- name: Upload artifacts to GitHub Release
env:
GH_TOKEN: ${{ github.token }}
run: |
TAG="${{ github.ref_name }}"
gh release upload "$TAG" build/bundle/*.zip build/bundle/*.xpi