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 1c7ddf3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,27 @@ jobs:
uses: ./.github/workflows/build-storybook.yml
with:
artifact-name: "storybook-${{ github.head_ref }}"
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
- name: Install
run: npm ci --omit=dev --prefer-offline
- name: Download dist
uses: @actions/download-artifact@v4
with:
name: "lib-${{ github.head_ref }}"
- run: ls
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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 1c7ddf3

Please sign in to comment.