Files
first-interaction/.github/workflows/release.yml
dependabot[bot] 9766b5244c Bump issue-ops/semver from 2 to 3
Bumps [issue-ops/semver](https://github.com/issue-ops/semver) from 2 to 3.
- [Release notes](https://github.com/issue-ops/semver/releases)
- [Commits](https://github.com/issue-ops/semver/compare/v2...v3)

---
updated-dependencies:
- dependency-name: issue-ops/semver
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 20:23:25 +00:00

34 lines
609 B
YAML

name: Release
on:
workflow_dispatch:
permissions:
contents: write
jobs:
release:
name: Release Version
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5
with:
fetch-tags: true
- name: Tag
id: tag
uses: issue-ops/semver@v3
with:
manifest-path: package.json
workspace: ${{ github.workspace }}
ref: main
- name: Create Release
id: release
uses: issue-ops/releaser@v2
with:
tag: v${{ steps.tag.outputs.version }}