Skip to content

Commit 178ddf7

Browse files
committed
Pipeline updated
1 parent 7fe6fe6 commit 178ddf7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,16 @@ jobs:
162162
echo "Deleting old tag $TAG_NAME on remote..."
163163
git push --delete origin $TAG_NAME
164164
165-
# Создаем новый тег
165+
# Создаем новый тег с [skip ci] в сообщении
166166
echo "Creating new tag ${{ env.VERSION }}..."
167-
git tag ${{ env.VERSION }} $TAG_COMMIT
167+
git tag -a ${{ env.VERSION }} -m "New release [skip ci]"
168168
169169
# Пушим новый тег
170170
echo "Pushing new tag ${{ env.VERSION }} to remote..."
171171
git push origin ${{ env.VERSION }}
172172
173173
echo "Tag updated to ${{ env.VERSION }}."
174174
175-
176175
- name: Commit and push changes to develop
177176
if: env.BRANCH_NAME == 'develop'
178177
run: |

0 commit comments

Comments
 (0)