Skip to content

v 0.0.0

v 0.0.0 #56

Workflow file for this run

name: Release Studio
on:
push:
# branches: main
jobs:
release:
runs-on: ubuntu-latest
# if: startsWith(github.event.head_commit.message, 'simple')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: check commit name
run: |
COMMIT_MSG="${{ github.event.head_commit.message }}"
COMMIT_TITLE="${COMMIT_MSG%%$'\n'*}"
echo "${COMMIT_TITLE}"
if [[ $COMMIT_TITLE =~ ^(v|Version )[0-9]+\.[0-9]+\.[0-9]+( \(#[0-9]+\))?$ ]]
then
echo "matched regex"
else
echo "did not match"
fi