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 88d47bf commit cfa3155Copy full SHA for cfa3155
1 file changed
.circleci/config.yml
@@ -91,10 +91,18 @@ jobs:
91
git config user.name "GravityKit - CI"
92
- run:
93
name: Replace @since tags
94
- command: npx @gravitykit/gktools replace-since --commit
+ command: |
95
+ if [ "${CIRCLE_BRANCH}" == "main" ]; then
96
+ npx @gravitykit/gktools replace-since --commit
97
+ else
98
+ echo "Skipping @since tag replacement (only runs on main, before release build)."
99
+ fi
100
101
name: Build and package
102
command: npx @gravitykit/gktools build
103
+ - run:
104
+ name: Sign build
105
+ command: npx @gravitykit/gktools sign
106
107
name: Trigger translation pipeline
108
command: |
0 commit comments