dbgate/.github/workflows/build-npm.yaml

122 lines
2.7 KiB
YAML
Raw Normal View History

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]+'
# - '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:
os: [ubuntu-18.04]
# os: [macOS-10.14, windows-2016, ubuntu-18.04]
steps:
- name: Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.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
- name: Publish dbgate
working-directory: packages/dbgate
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
- 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