-
Notifications
You must be signed in to change notification settings - Fork 25
90 lines (88 loc) · 2.83 KB
/
production.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
on:
release:
types:
- created
env:
REGISTRY: ghcr.io
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
name: Deploy Conduit
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to the Dockerhub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build conduit modules
run: |
make all
publish_sdk:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set env
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/^v//')" >> $GITHUB_ENV
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.17.3'
- name: install dependencies
run: yarn install --pure-lockfile --non-interactive
- name: actually_publish
run: yarn publish --access public --new-version ${{ env.RELEASE_VERSION }}
working-directory: ./libraries/grpc-sdk
env:
NODE_AUTH_TOKEN: "${{ secrets.NPM_PUBLISH_TOKEN }}"
publish_module_tools:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set env
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/^v//')" >> $GITHUB_ENV
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.17.3'
- name: install dependencies
run: yarn install --pure-lockfile --non-interactive
- name: build the sdk
run: npx lerna run build --scope=@conduitplatform/grpc-sdk --scope=@conduitplatform/module-tools
- name: actually_publish
run: yarn publish --access public --new-version ${{ env.RELEASE_VERSION }}
working-directory: ./libraries/module-tools
env:
NODE_AUTH_TOKEN: "${{ secrets.NPM_PUBLISH_TOKEN }}"