Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
609 B
YAML
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@v2
|
|
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 }}
|