2021-02-07 09:32:58 +00:00
|
|
|
name: NPM packages
|
2021-02-07 08:56:50 +00:00
|
|
|
|
|
|
|
# on: [push]
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-02-14 10:46:29 +00:00
|
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
2021-10-14 17:51:46 +00:00
|
|
|
- 'v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+'
|
2021-02-07 08:56:50 +00:00
|
|
|
|
|
|
|
# on:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - production
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-03-06 18:11:47 +00:00
|
|
|
os: [ubuntu-22.04]
|
2021-02-07 08:56:50 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Context
|
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
2021-09-28 06:15:08 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-07 08:56:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
2024-05-08 08:27:35 +00:00
|
|
|
- name: Use Node.js 18.x
|
2021-02-07 08:56:50 +00:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2024-05-08 08:27:35 +00:00
|
|
|
node-version: 18.x
|
2021-02-08 16:59:37 +00:00
|
|
|
|
|
|
|
- name: Configure NPM token
|
2021-02-07 16:37:06 +00:00
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2021-02-08 16:59:37 +00:00
|
|
|
run: |
|
|
|
|
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
|
|
|
|
|
|
|
|
- name: yarn install
|
2021-02-07 08:56:50 +00:00
|
|
|
run: |
|
|
|
|
yarn install
|
2021-02-08 16:59:37 +00:00
|
|
|
|
2021-02-07 08:56:50 +00:00
|
|
|
- name: setCurrentVersion
|
|
|
|
run: |
|
|
|
|
yarn setCurrentVersion
|
2021-02-07 09:32:58 +00:00
|
|
|
|
2021-02-07 09:13:07 +00:00
|
|
|
- name: Publish types
|
|
|
|
working-directory: packages/types
|
2021-02-07 09:43:36 +00:00
|
|
|
run: |
|
|
|
|
npm publish
|
2021-02-07 16:24:45 +00:00
|
|
|
|
|
|
|
- name: Publish tools
|
|
|
|
working-directory: packages/tools
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish sqltree
|
|
|
|
working-directory: packages/sqltree
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish api
|
|
|
|
working-directory: packages/api
|
|
|
|
run: |
|
|
|
|
npm publish
|
2021-02-08 16:26:27 +00:00
|
|
|
|
|
|
|
- name: Publish datalib
|
|
|
|
working-directory: packages/datalib
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish filterparser
|
|
|
|
working-directory: packages/filterparser
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
2021-02-07 16:24:45 +00:00
|
|
|
- name: Publish web
|
|
|
|
working-directory: packages/web
|
|
|
|
run: |
|
|
|
|
npm publish
|
2022-03-24 08:55:39 +00:00
|
|
|
|
|
|
|
- name: Publish dbgate (obsolete)
|
2021-02-07 16:24:45 +00:00
|
|
|
working-directory: packages/dbgate
|
|
|
|
run: |
|
|
|
|
npm publish
|
2021-04-15 15:56:35 +00:00
|
|
|
|
2022-03-24 08:55:39 +00:00
|
|
|
- name: Publish dbgate-serve
|
|
|
|
working-directory: packages/serve
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
2023-01-28 19:19:16 +00:00
|
|
|
- name: Publish dbmodel
|
|
|
|
working-directory: packages/dbmodel
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
2021-04-15 15:56:35 +00:00
|
|
|
- name: Publish dbgate-plugin-csv
|
|
|
|
working-directory: plugins/dbgate-plugin-csv
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
2022-01-30 09:30:47 +00:00
|
|
|
- name: Publish dbgate-plugin-xml
|
|
|
|
working-directory: plugins/dbgate-plugin-xml
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
2021-04-15 15:56:35 +00:00
|
|
|
- name: Publish dbgate-plugin-excel
|
|
|
|
working-directory: plugins/dbgate-plugin-excel
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-mssql
|
|
|
|
working-directory: plugins/dbgate-plugin-mssql
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-mysql
|
|
|
|
working-directory: plugins/dbgate-plugin-mysql
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-mongo
|
|
|
|
working-directory: plugins/dbgate-plugin-mongo
|
|
|
|
run: |
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-postgres
|
|
|
|
working-directory: plugins/dbgate-plugin-postgres
|
|
|
|
run: |
|
|
|
|
npm publish
|
2021-05-17 18:47:29 +00:00
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-sqlite
|
|
|
|
working-directory: plugins/dbgate-plugin-sqlite
|
|
|
|
run: |
|
|
|
|
npm publish
|
2022-03-05 10:14:07 +00:00
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-redis
|
|
|
|
working-directory: plugins/dbgate-plugin-redis
|
|
|
|
run: |
|
|
|
|
npm publish
|
2023-01-02 17:48:28 +00:00
|
|
|
|
|
|
|
- name: Publish dbgate-plugin-oracle
|
|
|
|
working-directory: plugins/dbgate-plugin-oracle
|
|
|
|
run: |
|
|
|
|
npm publish
|