Update version to 0.3.2

This commit is contained in:
Jiaxin Peng
2023-11-16 12:55:01 +00:00
parent bf9c3f2933
commit 880f256ae1
3 changed files with 9 additions and 9 deletions

View File

@@ -14,22 +14,22 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js
- name: Use Node.js and Yarn
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.yarnpkg.com/"
- name: Update npm
run: npm install -g npm@latest
- name: Update Yarn
run: yarn policies set-version latest
- name: Clear npm cache
run: npm cache clean -f
- name: Install Dependencies
run: yarn install
- name: Build
id: build
run: |
npm install
npm run build
yarn build
mkdir ${{ env.PLUGIN_NAME }}
cp main.js manifest.json ${{ env.PLUGIN_NAME }}
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}