Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MERGING develop into release/24.04 #9

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 42 additions & 42 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -1,50 +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 }}
Loading