forked from GeoDaCenter/jsgeoda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'action-publish-npm' into master
- Loading branch information
Showing
3 changed files
with
51 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters