-
Notifications
You must be signed in to change notification settings - Fork 13
66 lines (61 loc) · 2.02 KB
/
release-please.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
on:
push:
branches:
- main
name: release-please
jobs:
release-please:
permissions:
contents: write
pull-requests: write
packages: write
runs-on: ubuntu-latest
environment: npm
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{secrets.CDS_DBS_TOKEN}}
# The logic below handles the npm publication:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
# Run tests
- run: npm ci
if: ${{ steps.release.outputs.releases_created }}
# hana express setup
- id: hxe
if: ${{ steps.release.outputs.releases_created }}
uses: ./.github/actions/hxe
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# testing hana/sqlite/postgres/db-service
- run: npm test -ws
if: ${{ steps.release.outputs.releases_created }}
env:
FORCE_COLOR: true
TAG: ${{ steps.hxe.outputs.TAG }}
IMAGE_ID: ${{ steps.hxe.outputs.IMAGE_ID }}
# Publish packages
- name: Publish db-service
if: ${{ steps.release.outputs.db-service--release_created }}
run: npm publish --workspace db-service --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Publish sqlite
if: ${{ steps.release.outputs.sqlite--release_created }}
run: npm publish --workspace sqlite --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Publish postgres
if: ${{ steps.release.outputs.postgres--release_created }}
run: npm publish --workspace postgres --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Publish SAP HANA
if: ${{ steps.release.outputs.hana--release_created }}
run: npm publish --workspace hana --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}