Skip to content

Commit

Permalink
Merge branch 'action-publish-npm' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
lixun910 committed Sep 16, 2021
2 parents 3e38edd + 6e78338 commit eb35158
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 57 deletions.
101 changes: 51 additions & 50 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
@@ -1,60 +1,61 @@
name: Build jsgeoda

on: [push]
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

permissions:
packages: write
contents: read

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: https://npm.pkg.github.com/
scope: '@geodacenter'

- name: Build&Test jsgeoda
run: |
npm install
npm run build --if-present
npm test
env:
# replace ${GITHUB_TOKEN} in .npmrc
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

# Publish to GitHub Package Registry
- name: Publish to GitHub Package Registry
# Only when release
if: startsWith(github.ref, 'refs/tags/v')
run: |
npm publish
env:
# replace ${GITHUB_TOKEN} in .npmrc
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

# Publish to NPM registry
- name: Use Node.js ${{ matrix.node-version }} for NPM
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/

- name: Publish to NPM Registry
run: |
rm .npmrc
echo //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN > .npmrc
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Build&Test jsgeoda
run: |
npm install
npm run build --if-present
npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: publis-npm
if: startsWith(github.ref, 'refs/tags/v')
run: |
npm install
npm run build
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@geodacenter'
- name: publish-gpr
if: startsWith(github.ref, 'refs/tags/v')
run: |
npm install
npm run build
echo //npm.pkg.github.com/:_authToken=${GITHUB_TOKEN} > .npmrc
echo @geodacenter:registry=https://npm.pkg.github.com >> .npmrc
echo always-auth=true >> .npmrc
npm publish
env:
# replace ${GITHUB_TOKEN} in .npmrc
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
3 changes: 0 additions & 3 deletions .npmrc

This file was deleted.

4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"serve": "http-server",
"start": "npm run build && npm run serve",
"doc": "jsdoc -d docs --configure jsconf.json --readme README.md",
"publish": "npm run build:bundle && npm publish --access public",
"test": "tape tests/**/*.js"
},
"devDependencies": {
Expand Down Expand Up @@ -65,8 +64,5 @@
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"@geodacenter:registry": "https://npm.pkg.github.com"
}
}

0 comments on commit eb35158

Please sign in to comment.