Skip to content

1.3.5

1.3.5 #12

Workflow file for this run

name: Release
on:
push:
tags:
- v*.*.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
- uses: actions/upload-artifact@v4
with:
name: time-travel-${{ github.ref_name }}
path: dist/
- name: Upload to Chrome Web Store
env:
CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
EXTENSION_ID: jfdbpgcmmenmelcghpbbkldkcfiejcjg
run: cd dist/ && npx chrome-webstore-upload upload