Skip to content

Commit

Permalink
CI: Add package publication to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mintoo200 committed Mar 20, 2024
1 parent 8d8965e commit 8a60098
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,28 @@ jobs:
uses: actions/deploy-pages@v4
with:
artifact_name: "storybook-latest"
publish-package:
needs: build
permissions:
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
# TODO: add version to a .nvmrc or at least a variable
node-version: 18.12.1
cache: npm
registry-url: 'https://npm.pkg.github.com'
- name: Install
run: npm ci --omit=dev --prefer-offline
- name: Download dist
uses: actions/download-artifact@v4
with:
name: "lib-latest"
path: "./dist"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ coverage

*storybook.log
storybook-static

.npmrc
34 changes: 34 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo

*storybook.log
storybook-static

.npmrc
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"require": "./dist/dsocto.cjs"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "https://github.com/octo-technology/Design-System---Marque-Blanche.git",
"type": "module",
"scripts": {
"build": "vite build",
Expand Down

0 comments on commit 8a60098

Please sign in to comment.