File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -131,23 +131,28 @@ GRPS="automodel,-test"
131
131
132
132
pushd " $AUTOMODEL_ROOT "
133
133
echo Testing automodel queries
134
- " ${CODEQL_DIST} /codeql" test run test
134
+ # "${CODEQL_DIST}/codeql" test run test
135
+ gh codeql test run test
135
136
popd
136
137
137
138
pushd " $WORKSPACE_ROOT "
138
139
echo " Preparing the release"
139
- " ${CODEQL_DIST} /codeql" pack release --groups $GRPS -v
140
+ # "${CODEQL_DIST}/codeql" pack release --groups $GRPS -v
141
+ gh codeql pack release --groups $GRPS -v
140
142
141
143
if [ $DRY_RUN = 1 ]; then
142
144
echo " Dry run: not publishing the query pack"
143
- " ${CODEQL_DIST} /codeql" pack publish --groups $GRPS --dry-run -v
145
+ # "${CODEQL_DIST}/codeql" pack publish --groups $GRPS --dry-run -v
146
+ gh codeql pack publish --groups $GRPS --dry-run -v
144
147
else
145
148
echo " Not a dry run! Publishing the query pack"
146
- " ${CODEQL_DIST} /codeql" pack publish --groups $GRPS -v
149
+ # "${CODEQL_DIST}/codeql" pack publish --groups $GRPS -v
150
+ gh codeql pack publish --groups $GRPS -v
147
151
fi
148
152
149
153
echo " Bumping versions"
150
- " ${CODEQL_DIST} /codeql" pack post-release --groups $GRPS -v
154
+ # "${CODEQL_DIST}/codeql" pack post-release --groups $GRPS -v
155
+ gh codeql pack post-release --groups $GRPS -v
151
156
popd
152
157
153
158
# The above commands update
You can’t perform that action at this time.
0 commit comments