Skip to content
Merged
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
33 changes: 28 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
cache: npm
- run: npm install -g npm@${{ env.NPM_VERSION }}
- run: npm ci
Expand Down Expand Up @@ -50,10 +49,14 @@ jobs:
with:
working-directory: packages/${{ steps.route.outputs.package }}
- run: npm run ci
- run: npm publish -w @microbit/${{ steps.route.outputs.package }} --allow-directory=all
if: github.event_name == 'release' && github.event.action == 'created'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm pack -w @microbit/${{ steps.route.outputs.package }}
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: github.event_name == 'release'
with:
name: npm-tarball
path: "*.tgz"
if-no-files-found: error
retention-days: 1
# On main, hand the Storybook this run just built and checked to the
# deploy job below. Releases are excluded naturally: their ref is a tag.
- uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6
Expand All @@ -62,6 +65,26 @@ jobs:
if: github.ref == 'refs/heads/main' && github.event_name != 'release'
with:
path: apps/storybook/storybook-static

publish:
needs: build
if: github.event_name == 'release'
runs-on: ubuntu-latest
environment: npm-publish
permissions:
contents: read
id-token: write
steps:
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: npm-tarball
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@${{ env.NPM_VERSION }}
- run: npm stage publish --allow-file=all ./*.tgz

deploy-storybook:
needs: build
if: github.ref == 'refs/heads/main' && github.event_name != 'release'
Expand Down