-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
43 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,51 +1,50 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | ||
|
||
name: Node.js Package | ||
name: Publish Node.js Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
types: [published] | ||
workflow_dispatch: | ||
inputs: | ||
node_version: | ||
description: 'Node version to use' | ||
required: true | ||
default: '20' | ||
registry_url: | ||
description: 'NPM registry URL' | ||
required: true | ||
default: 'https://registry.npmjs.org/' | ||
scope: | ||
description: 'Scope for npm package' | ||
required: false | ||
default: 'openimis' | ||
access: | ||
description: 'Access level for npm package' | ||
required: false | ||
default: 'public' | ||
tab: | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- run: yarn install | ||
- run: yarn build | ||
|
||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
scope: openimis | ||
- run: yarn install | ||
- run: yarn build | ||
- run: 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@v1 | ||
with: | ||
node-version: 12 | ||
registry-url: https://npm.pkg.github.com/ | ||
- run: yarn install | ||
- run: yarn build | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
call-npm-publish-workflow: | ||
uses: openimis/openimis-fe_js/.github/workflows/module-npmpublish.yml@develop | ||
with: | ||
registry_url: 'https://registry.npmjs.org/' | ||
node_version: ${{ github.event.inputs.node_version }} | ||
access: ${{ github.event.inputs.access }} | ||
scope: ${{ github.event.inputs.scope }} | ||
tag: ${{ github.event.inputs.tag }} | ||
secrets: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
call-gpr-publish-workflow: | ||
uses: openimis/openimis-fe_js/.github/workflows/module-npmpublish.yml@develop | ||
with: | ||
registry_url: 'https://npm.pkg.github.com/' | ||
node_version: ${{ github.event.inputs.node_version }} | ||
access: ${{ github.event.inputs.access }} | ||
scope: ${{ github.event.inputs.scope }} | ||
tag: ${{ github.event.inputs.tag }} | ||
secrets: | ||
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} |