-
Notifications
You must be signed in to change notification settings - Fork 14
91 lines (76 loc) · 3.06 KB
/
publish-gaarf-js.yaml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: 'Publish gaarf-js to npm on version bump'
on:
push:
branches:
- main
jobs:
autopublish-create-gaarf-wf:
name: Autopublish create-gaarf-wf npm package if package.json version was bumped
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./gcp/create-gaarf-wf
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Check package version
id: cpv
uses: PostHog/check-package-version@v2
with:
path: "gcp/create-gaarf-wf"
- name: Echo versions
run: |
echo "Committed version: ${{ steps.cpv.outputs.committed-version }}"
echo "Published version: ${{ steps.cpv.outputs.published-version }}"
- name: Install dependencies
if: steps.cpv.outputs.is-new-version == 'true'
run: npm ci
- name: Compile TS
if: steps.cpv.outputs.is-new-version == 'true'
run: npm run tsc
# NOTE: setting our registry url should be done after installing deps
- uses: actions/setup-node@v3
with:
node-version: '19'
registry-url: 'https://wombat-dressing-room.appspot.com/'
- name: Publish new version
if: steps.cpv.outputs.is-new-version == 'true'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN2 }}
autopublish-gaarf:
name: Autopublish gaarf npm package if package.json version was bumped
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./js
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Check package version
id: cpv
uses: PostHog/check-package-version@v2
with:
path: "js"
- name: Echo versions
run: |
echo "Committed version: ${{ steps.cpv.outputs.committed-version }}"
echo "Published version: ${{ steps.cpv.outputs.published-version }}"
- name: Install dependencies
if: steps.cpv.outputs.is-new-version == 'true'
run: npm ci
- name: Compile and run tests
if: steps.cpv.outputs.is-new-version == 'true'
run: |
npm run tsc
npm run test
# NOTE: setting our registry url should be done after installing deps
- uses: actions/setup-node@v3
with:
node-version: '19'
registry-url: 'https://wombat-dressing-room.appspot.com/'
- name: Publish new version
if: steps.cpv.outputs.is-new-version == 'true'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}