Skip to content

Release candidate v0.1.16 #14

Release candidate v0.1.16

Release candidate v0.1.16 #14

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*" # only release a versioned tag, such as v.X.Y.Z
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Build and package into a zip file
run: yarn package
- name: Upload to Chrome Web Store
uses: mobilefirstllc/cws-publish@latest
with:
action: 'upload'
client_id: ${{ secrets.CLIENT }}
client_secret: ${{ secrets.SECRET }}
refresh_token: ${{ secrets.TOKEN }}
extension_id: ${{ secrets.EXTENSION_ID }}
zip_file: 'dist/strophe.zip'