Merge 192a4dfd7d6181111e78ba15dd528b130a420a62 into 574cf60b31819d4b8… #2
Workflow file for this run
This file contains 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: release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
tag: | |
required: true | |
type: string | |
description: "The tag to release" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
RELEASE_REF: ${{ github.event_name == 'push' && github.ref_name || inputs.tag }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ env.RELEASE_REF }} | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
tag_name: ${{ env.RELEASE_REF }} |