Skip to content

Deploy d173a1b7cbaf109499e65b7e630559014e3cebe4 #53

Deploy d173a1b7cbaf109499e65b7e630559014e3cebe4

Deploy d173a1b7cbaf109499e65b7e630559014e3cebe4 #53

Workflow file for this run

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '[0-9]+\.[0-9]+'
name: Create release
jobs:
build:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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@v1
with:
name: Release ${{ steps.get_version.outputs.VERSION }}