Skip to content

Version 1.0.7

Version 1.0.7 #3

Workflow file for this run

name: Tagged Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm run lint
- run: npm run pack --if-present
- uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
prerelease: false
files: |
packages/jiten.reader-chromium.zip
packages/jiten.reader-firefox.xpi
packages/LICENSE.md
id: 'automatic_releases'