This repository was archived by the owner on May 20, 2025. It is now read-only.
Add Identity 1.4 docs (#1686) #451
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tag packages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tag: | |
| strategy: | |
| matrix: | |
| package: [core, cli] | |
| include: | |
| - package: core | |
| path: 'package.json' | |
| workspace: '@iota-wiki/core' | |
| - package: cli | |
| path: 'cli/package.json' | |
| workspace: '@iota-wiki/cli' | |
| uses: ./.github/workflows/tag.reusable.yaml | |
| with: | |
| path: ${{ matrix.path }} | |
| workspace: ${{ matrix.workspace }} |