update ui_mockup #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "4. Прототип хранение и представление" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check_prototype_store_and_view: | |
name: "Проверка наличия тега 0.5" | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out current commit | |
with: | |
fetch-depth: 0 | |
- name: check | |
run: | | |
TAG="0.5" | |
if [ $(git tag -l "${TAG}") ]; then | |
echo "::notice::Тег ${TAG} найден" | |
else | |
echo "::error::Тег ${TAG} не найден" | |
exit 1 | |
fi |