Skip to content

Release production-2024-05-07-1 #4

Release production-2024-05-07-1

Release production-2024-05-07-1 #4

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-tags: true
- name: Check deployability
shell: bash
run: |
if ! [[ $(git tag --points-at "$GITHUB_SHA" | grep production-deployable) ]]; then
echo "OOPS"
exit 1
fi