Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit c35ed9d

Browse files
Revert "SIGN-7496 - improve directory resolution logic in HelperArtifactDownload"
This reverts commit dcd5bb4.
1 parent dcd5bb4 commit c35ed9d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

actions/submit-signing-request/helper-artifact-download.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ export class HelperArtifactDownload {
6868
}
6969

7070
private resolveOrCreateDirectory(relativePath:string): string {
71-
const workingDirectory = process.env.GITHUB_WORKSPACE as string;
72-
const absolutePath = path.isAbsolute(relativePath) ? relativePath :
73-
path.join(workingDirectory as string, relativePath);
74-
71+
const absolutePath = path.join(process.env.GITHUB_WORKSPACE as string, relativePath)
7572
if (!fs.existsSync(absolutePath)) {
7673
core.info(`Directory "${absolutePath}" does not exist and will be created`);
7774
fs.mkdirSync(absolutePath, { recursive: true });

0 commit comments

Comments
 (0)