Skip to content

Commit

Permalink
ref: Use full git SHA for release name (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst authored Jun 23, 2023
1 parent 0760aa2 commit 47bd10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bundler-plugin-core/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export function stringToUUID(str: string): string {
export function determineReleaseName(): string | undefined {
let gitRevision: string | undefined;
try {
gitRevision = childProcess.execSync("git rev-parse --short HEAD").toString().trim();
gitRevision = childProcess.execSync("git rev-parse HEAD").toString().trim();
} catch (e) {
// noop
}
Expand Down

0 comments on commit 47bd10e

Please sign in to comment.