Skip to content

Deploy 582afa439e4d4cc563077478bde471ad4f0afb90 #57

Deploy 582afa439e4d4cc563077478bde471ad4f0afb90

Deploy 582afa439e4d4cc563077478bde471ad4f0afb90 #57

Workflow file for this run

name: Create release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '[0-9]+\.[0-9]+'
env:
FORCE_COLOR: 1
jobs:
build:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Get the version
id: get_version
if: startsWith(github.ref, 'refs/tags/')
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Create release
uses: softprops/action-gh-release@v2
with:
name: Release ${{ steps.get_version.outputs.VERSION }}