Skip to content

Commit

Permalink
Changed used workflow to centralized one
Browse files Browse the repository at this point in the history
  • Loading branch information
dborowiecki committed Apr 30, 2024
1 parent 98be174 commit ab2e52a
Showing 1 changed file with 35 additions and 54 deletions.
89 changes: 35 additions & 54 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -1,63 +1,44 @@
# 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: '16'
registry_url:
description: 'NPM registry URL'
required: true
default: 'https://registry.npmjs.org/'
scope:
description: 'Scope for npm package'
required: false
default: ''
access:
description: 'Access level for npm package'
required: false
default: 'public'
publish_to_gpr:
description: 'Should publish to GitHub Package Registry'
required: false
type: boolean
default: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: olegtarasov/[email protected]
id: tagName
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- 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/[email protected]
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/[email protected]
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-central-workflow:
uses: openimis/openimis-fe_js/.github/workflows/module-npmpublish.yml@feature/central-publish-workflow
with:
node_version: '16'
registry_url: 'https://registry.npmjs.org/'
access: 'public'
scope: 'openimis'
publish_to_gpr: true
secrets:
TOKEN: ${{ secrets.NPM_TOKEN }}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit ab2e52a

Please sign in to comment.