name: NPM packages # on: [push] on: push: tags: - 'v[0-9]+.[0-9]+.[0-9]+' # - 'v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+' # 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 - name: Configure NPM token env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - name: yarn install run: | yarn install - name: setCurrentVersion run: | yarn setCurrentVersion - name: Publish types working-directory: packages/types run: | npm publish - 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 - name: Publish datalib working-directory: packages/datalib run: | npm publish - name: Publish filterparser working-directory: packages/filterparser run: | npm publish - name: Publish web working-directory: packages/web run: | npm publish - name: Publish dbgate working-directory: packages/dbgate run: | npm publish