Skip to content

Commit 8c4d706

Browse files
Merge pull request #37 from sendinblue/ci/automate-releases
ci: automate package release
2 parents 8f03abe + a6b8806 commit 8c4d706

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @aayush-sib @ekta-slit

.github/workflows/release.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Node.js Package
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
packages: write
11+
steps:
12+
- uses: actions/checkout@v2
13+
# Setup .npmrc file to publish to npm
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: '14'
17+
registry-url: 'https://registry.npmjs.org'
18+
- run: npm install
19+
- run: npm publish --access public
20+
env:
21+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
22+
# Setup .npmrc file to publish to GitHub Packages
23+
- uses: actions/setup-node@v2
24+
with:
25+
registry-url: 'https://npm.pkg.github.com'
26+
scope: '@sendinblue'
27+
# Publish to GitHub Packages
28+
- run: npm publish
29+
env:
30+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)