Skip to content

v0.4.0

v0.4.0 #16

Workflow file for this run

name: Create Release
permissions: read-all
on:
release:
types: [published]
workflow_dispatch:
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
env:
NODE_VERSION: '24'
NODE_OPTIONS: '--max_old_space_size=4096'
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- name: Install node modules and verify build
run: npm ci && npm run build:release
- name: Publish FDC3 Library
run: cd dist/fdc3-web && npm publish --provenance --access public
- name: Publish Messaging Provider Library
run: cd dist/fdc3-web-messaging-provider && npm publish --provenance --access public
- name: Publish UI Provider Library
run: cd dist/fdc3-web-ui-provider && npm publish --provenance --access public