We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe6fe6 commit 178ddf7Copy full SHA for 178ddf7
.github/workflows/publish.yml
@@ -162,17 +162,16 @@ jobs:
162
echo "Deleting old tag $TAG_NAME on remote..."
163
git push --delete origin $TAG_NAME
164
165
- # Создаем новый тег
+ # Создаем новый тег с [skip ci] в сообщении
166
echo "Creating new tag ${{ env.VERSION }}..."
167
- git tag ${{ env.VERSION }} $TAG_COMMIT
+ git tag -a ${{ env.VERSION }} -m "New release [skip ci]"
168
169
# Пушим новый тег
170
echo "Pushing new tag ${{ env.VERSION }} to remote..."
171
git push origin ${{ env.VERSION }}
172
173
echo "Tag updated to ${{ env.VERSION }}."
174
175
-
176
- name: Commit and push changes to develop
177
if: env.BRANCH_NAME == 'develop'
178
run: |
0 commit comments