Skip to content

Workflow file for this run

on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install
- run: npm run build
- run: npm run changelog --silent > changelog.md
- uses: softprops/action-gh-release@v1
with:
body_path: changelog.md
files: web-ext-artifacts/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}