Skip to content

Commit

Permalink
Merge pull request #809 from cam-inc/feat-move-github-action
Browse files Browse the repository at this point in the history
move npm publish to github action
  • Loading branch information
nonoakij authored Feb 9, 2024
2 parents 42d43dd + b63df47 commit 966a88f
Show file tree
Hide file tree
Showing 6 changed files with 343 additions and 8 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/publish-package-viorn-lib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish NPM Package - Viron/lib

on:
push:
branches:
- develop
paths:
- "packages/nodejs/**"

jobs:
build-and-publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies and Build
run: |
echo "Installing packages..."
npm ci
npm run build -w packages/linter
npm run build -w packages/nodejs
- name: Set NPM_TOKEN
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish
run: |
echo "Publishing..."
npm publish -w packages/nodejs
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35 changes: 35 additions & 0 deletions .github/workflows/publish-package-viorn-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish NPM Package - Viron/linter

on:
push:
branches:
- develop
paths:
- "packages/linter/**"

jobs:
build-and-publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies and Build
run: |
echo "Installing packages..."
npm ci
npm run build -w packages/linter
- name: Set NPM_TOKEN
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish
run: |
echo "Publishing..."
npm publish -w packages/linter
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
266 changes: 264 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 966a88f

Please sign in to comment.