Skip to content

Commit

Permalink
non-release
Browse files Browse the repository at this point in the history
clean up and try again
  • Loading branch information
nmanu1 committed Oct 30, 2023
1 parent 3fd46cc commit a61ccad
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
jobs:
check-for-release:
runs-on: ubuntu-latest
# if: startsWith(github.event.head_commit.message, 'simple')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -15,18 +14,15 @@ jobs:
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"
PACKAGE_VERSION="${COMMIT_TITLE#Version }"
PACKAGE_VERSION="${PACKAGE_VERSION#v}"
PACKAGE_VERSION="${PACKAGE_VERSION%% *}"
echo "${PACKAGE_VERSION}"
echo version=${PACKAGE_VERSION} >> $GITHUB_OUTPUT
else
echo "did not match"
exit 0
fi
exit 1
- name: check package versions
run: |
if node ./bump-versions.mjs ${{ steps.vars.outputs.version }} &> temp-bump-versions.txt
Expand Down

0 comments on commit a61ccad

Please sign in to comment.