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

resolves #62 publish themes to npmjs.org #113

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/publish-to-npmjs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# see https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish Package to npmjs
on:
release:
types:
- published
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
50 changes: 27 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
{
"name": "primeng-sass-theme",
"version": "17.12.0",
"description": "PrimeNG Sass Theme",
"homepage": "https://primeng.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/primefaces/primeng-sass-theme.git"
},
"keywords": [
"primeng",
"angular",
"ui framework",
"component framework",
"ui library",
"component library",
"material",
"bootstrap"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/primefaces/primeng-sass-theme/issues"
}
}
"name": "primeng-sass-theme",
"version": "17.12.0",
"description": "PrimeNG Sass Theme",
"homepage": "https://primeng.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/primefaces/primeng-sass-theme.git"
},
"keywords": [
"primeng",
"angular",
"ui framework",
"component framework",
"ui library",
"component library",
"material",
"bootstrap"
],
"license": "MIT",
"files": [
"themes/**/*",
"theme-base/**/*"
],
"bugs": {
"url": "https://github.com/primefaces/primeng-sass-theme/issues"
}
}