Skip to content

Commit

Permalink
central publish
Browse files Browse the repository at this point in the history
  • Loading branch information
delcroip committed Apr 30, 2024
1 parent 0b957f0 commit e945ac0
Showing 1 changed file with 41 additions and 54 deletions.
95 changes: 41 additions & 54 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -1,63 +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: [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: olegtarasov/get-tag@v2.1
id: tagName
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- name: update the version with TAG
run: echo $(jq --arg a "$GIT_TAG_NAME" '.version = ($a)' package.json) > package.json
- run: yarn install
- run: yarn build


publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: olegtarasov/get-tag@v2.1
id: tagName
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
scope: openimis
- name: update the version with TAG
run: echo $(jq --arg a "$GIT_TAG_NAME" '.version = ($a)' package.json) > package.json
- 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: olegtarasov/get-tag@v2.1
id: tagName
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
- name: update the version with TAG
run: echo $(jq --arg a "$GIT_TAG_NAME" '.version = ($a)' package.json) > package.json
- 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 }}

0 comments on commit e945ac0

Please sign in to comment.