Skip to content

bump manifest and publish command #20

bump manifest and publish command

bump manifest and publish command #20

Workflow file for this run

name: Publish
on:
push:
tags:
- v**
jobs:
build:
name: Publish webextension
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install
run: npm ci
- name: Test
run: npm t
- name: Build
run: npm run release
- name: Upload & release
uses: mnao305/chrome-extension-upload@5.0.0
with:
file-path: releases/*.zip
glob: true
extension-id: ${{ secrets.EXTENSION_ID }}
client-id: ${{ secrets.CLIENT_ID }}
client-secret: ${{ secrets.CLIENT_SECRET }}
refresh-token: ${{ secrets.REFRESH_TOKEN }}