Skip to content

Commit 7df5e9c

Browse files
committedDec 12, 2024··
base commit
0 parents  commit 7df5e9c

File tree

162 files changed

+35706
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+35706
-0
lines changed
 

‎.github/CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Root
2+
* @smartcontractkit/prodsec-public

‎.github/workflows/publish.yaml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Publish to NPM
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
8+
jobs:
9+
build-and-publish:
10+
runs-on: ubuntu-latest
11+
environment: publish
12+
steps:
13+
- name: Checkout the repo
14+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Setup Node 18.x
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 18.12
22+
always-auth: true
23+
24+
- name: Install PNPM
25+
run: npm install -g pnpm@9.4.0
26+
shell: bash
27+
28+
- name: Install dependencies
29+
run:
30+
pnpm install --frozen-lockfile --strict-peer-dependencies --filter=ccip-js --filter=ccip-react-components
31+
shell: bash
32+
33+
- name: Publish ccip-js to NPM
34+
run: |
35+
pnpm build-ccip-js
36+
cd packages/ccip-js
37+
pnpm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_CCIP_JAVASCRIPT_SDK }}
38+
pnpm publish --no-git-checks --access public
39+
shell: bash
40+
41+
- name: Publish ccip-react-components to NPM
42+
run: |
43+
pnpm build-components
44+
cd packages/ccip-react-components
45+
pnpm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_CCIP_JAVASCRIPT_SDK }}
46+
pnpm publish --no-git-checks --access public
47+
shell: bash

0 commit comments

Comments
 (0)
Please sign in to comment.