chore(release): v0.1.15 #22
Workflow file for this run
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
| # Tag guard only — release tarballs are built and uploaded by CircleCI on the | |
| # monorepo tag (see scripts/ci/circle-oss-release.sh and plasm-oss/RELEASING.md). | |
| name: OSS release tag verify | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify tag matches workspace version | |
| run: bash scripts/ci/verify-release-tag-matches-workspace-version.sh |