We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a866ed commit 1c2f282Copy full SHA for 1c2f282
1 file changed
.github/actions/update-bundle/index.ts
@@ -13,8 +13,6 @@ interface Defaults {
13
priorCliVersion: string;
14
}
15
16
-const CODEQL_BUNDLE_PREFIX = 'codeql-bundle-';
17
-
18
function getCodeQLCliVersionForRelease(release): string {
19
// We do not currently tag CodeQL bundles based on the CLI version they contain.
20
// Instead, we use a marker file `cli-version-<version>.txt` to record the CLI version.
@@ -37,7 +35,7 @@ function getCodeQLCliVersionForRelease(release): string {
37
35
38
36
async function getBundleInfoFromRelease(release): Promise<BundleInfo> {
39
return {
40
- bundleVersion: release.tag_name.substring(CODEQL_BUNDLE_PREFIX.length),
+ bundleVersion: release.tag_name,
41
cliVersion: getCodeQLCliVersionForRelease(release)
42
};
43
0 commit comments