Skip to content

release

release #3

Workflow file for this run

name: release
on:
workflow_run:
workflows: [ build ]
types: [ completed ]
branches: [ main ]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Bump version
id: version
uses: paulhatch/[email protected]
- name: Create GitHub tag and release
uses: softprops/[email protected]
with:
tag_name: ${{ steps.version.outputs.version_tag }}
generate_release_notes: true