Skip to content

Update README.md

Update README.md #2

Workflow file for this run

## This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
## For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
#
#name: Deploy
#
#on: [ workflow_dispatch ]
#
#jobs:
# deploy:
#
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v2
#
# - uses: actions/setup-node@v2-beta
# with:
# node-version: '18'
#
# - run: npm ci
# - run: npm run build
#
# - name: Upload to Firefox
# uses: yayuyokitano/[email protected]
# with:
# api_key: ${{ secrets.FIREFOX_ISSUER }}
# api_secret: ${{ secrets.FIREFOX_SECRET }}
# guid: '{}'
# xpi_path: dist/latest.zip
#
# - name: Upload to Chrome
# uses: mnao305/[email protected]
# with:
# file-path: dist/latest.zip
# extension-id: ''
# client-id: ${{ secrets.CHROME_CLIENT_ID }}
# client-secret: ${{ secrets.CHROME_CLIENT_SECRET }}
# refresh-token: ${{ secrets.CHROME_REFRESH_TOKEN }}
#
#