Skip to content

Requested Eco Updates #1722

Requested Eco Updates

Requested Eco Updates #1722

Workflow file for this run

name: publish packages
on:
workflow_dispatch:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
publish:
strategy:
matrix:
package: [core, cli, plugin-tutorial]
include:
- package: core
path: 'package.json'
workspace: '@iota-wiki/core'
- package: cli
path: 'cli/package.json'
workspace: '@iota-wiki/cli'
- package: plugin-tutorial
path: 'plugins/tutorial/package.json'
workspace: '@iota-wiki/plugin-tutorial'
uses: ./.github/workflows/publish.reusable.yaml
with:
path: ${{ matrix.path }}
workspace: ${{ matrix.workspace }}