chore(ci): улучшил конфигурацию CI/CD пайплайнов

This commit is contained in:
skettiks
2026-05-03 12:04:29 +03:00
parent 1795064710
commit 1e2625a460
3 changed files with 22 additions and 11 deletions
+7 -3
View File
@@ -29,9 +29,13 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
run: |
gh release create "${{ inputs.version }}" \
--generate-notes \
--title "${{ inputs.version }}"
if gh release view "${{ inputs.version }}" >/dev/null 2>&1; then
echo "Release ${{ inputs.version }} already exists. Skipping creation."
else
gh release create "${{ inputs.version }}" \
--generate-notes \
--title "${{ inputs.version }}"
fi
- name: Send Telegram notification
env: