show more clearly that a non-mysql database is used 🫡 #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build plugin | |
run: npm ci && npm run build | |
working-directory: MysqlExplain.tableplusplugin | |
- name: Make zip | |
run: zip tableplus-mysql-explain-plugin-${GITHUB_REF_NAME}.zip MysqlExplain.tableplusplugin/build/* MysqlExplain.tableplusplugin/manifest.json | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: tableplus-mysql-explain-plugin-*.zip |