You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Disable Husky for the git step of semantic release (handles all versions, env var name changed in v6)
74
+
HUSKY_SKIP_HOOKS: 1
75
+
HUSKY: 0
76
+
before_script:
77
+
- *configure-registry
78
+
script:
79
+
- npx semantic-release -r $CI_PROJECT_URL
80
+
81
+
.curlcmd: &curlcmd >
82
+
curl
83
+
-sS
84
+
-X POST
85
+
--data-urlencode "payload={\"attachments\":[{\"fallback\":\"$GITLAB_USER_NAME released new $CI_PROJECT_TITLE version $CI_COMMIT_TAG\",\"color\":\"good\",\"author_name\":\"$GITLAB_USER_NAME ($GITLAB_USER_LOGIN)\",\"author_icon\":\"$GITLAB_USER_AVATAR\",\"author_link\":\"https://gitlab.com/$GITLAB_USER_LOGIN\",\"title\":\"Version $CI_COMMIT_TAG of $CI_PROJECT_NAME released\",\"title_link\":\"$CI_PROJECT_URL/-/tags/$CI_COMMIT_TAG\",\"fields\":[{\"title\":\"Tag\",\"value\":\"<$CI_PROJECT_URL/commits/$CI_COMMIT_TAG|$CI_COMMIT_TAG>\",\"short\":true},{\"title\":\"Commit\",\"value\":\"<$CI_PROJECT_URL/tree/$CI_COMMIT_SHA|$CI_COMMIT_TITLE>\",\"short\":true}],\"footer\":\"$CI_PROJECT_NAME\",\"ts\":$( date +%s )}]}"
86
+
$SLACK_API_ENDPOINT
87
+
88
+
notify:
89
+
image: alpine:latest
90
+
stage: notify
91
+
rules:
92
+
- if: $CI_COMMIT_TAG
93
+
# Overwrite the default before script with a no-op action to disable the node specific actions
0 commit comments