* Simplify CI for shared-components Now that we use pnpm which understands monorepos we can skip manually installing shared-components in CI Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix docs workflow not being able to find pnpm version Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix storybook workflow not seeing lockfile and using wrong package manager Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix dockerbuild Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: Publish shared component npm package
|
|
on:
|
|
workflow_dispatch: {}
|
|
|
|
concurrency: release
|
|
jobs:
|
|
publish:
|
|
name: "Publish"
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: 🧮 Checkout code
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
|
|
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
|
|
- name: 🔧 Set up node environment
|
|
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
|
|
with:
|
|
cache: "pnpm"
|
|
node-version-file: ".node-version"
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
# Ensure npm 11.5.1 or later is installed
|
|
- name: Update npm
|
|
run: npm install -g npm@latest
|
|
|
|
# Need to setup element web too as it needs the translations
|
|
- name: 🛠️ Setup EW
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: 🚀 Publish to npm
|
|
working-directory: packages/shared-components
|
|
run: npm publish --access public --provenance
|