Browse Source

Update workflow for the core publish (#6821)

pull/6811/merge
Artur Arseniev 3 days ago
committed by GitHub
parent
commit
add7f860c0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/publish-core-latest.yml
  2. 2
      .github/workflows/publish-core-rc.yml

2
.github/workflows/publish-core-latest.yml

@ -7,7 +7,7 @@ on:
jobs:
publish:
if: "contains(github.event.head_commit.message, 'Release GrapesJS core latest:')"
if: "startsWith(github.event.head_commit.message, 'Release GrapesJS core latest:')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

2
.github/workflows/publish-core-rc.yml

@ -7,7 +7,7 @@ on:
jobs:
publish:
if: "contains(github.event.head_commit.message, 'Release GrapesJS core rc:')"
if: "startsWith(github.event.head_commit.message, 'Release GrapesJS core rc:')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Loading…
Cancel
Save