mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
Add release check when starting latest CI
This commit is contained in:
parent
9acac28574
commit
be300138e4
2 changed files with 10 additions and 133 deletions
11
.github/workflows/latest-git-tag.yml
vendored
11
.github/workflows/latest-git-tag.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
# Create or update a latest git tag when releasing a stable vesrsin of Meilisearch
|
||||
# Create or update a latest git tag when releasing a stable version of Meilisearch
|
||||
name: Update latest git tag
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -6,6 +6,15 @@ on:
|
|||
types: [released]
|
||||
|
||||
jobs:
|
||||
check-version:
|
||||
name: Check the version validity
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Check release validity
|
||||
if: github.event_name == 'release'
|
||||
run: bash .github/scripts/check-release.sh
|
||||
|
||||
update-latest-tag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue