Merge 575a7b02b5f87f49ba063090def0ac5950d62532 into b3dd3d6c420903eb3… #3
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 }} |