Skip to content

Commit 94cdce4

Browse files
authored
fix: use - instead of / in temporary deployment branch name (#1962)
1 parent 1b39d82 commit 94cdce4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export async function init(action: ActionInterface): Promise<void | Error> {
108108
export async function deploy(action: ActionInterface): Promise<Status> {
109109
const temporaryDeploymentDirectory =
110110
'github-pages-deploy-action-temp-deployment-folder'
111-
const temporaryDeploymentBranch = `github-pages-deploy-action/${Math.random()
111+
const temporaryDeploymentBranch = `github-pages-deploy-action-${Math.random()
112112
.toString(36)
113113
.substr(2, 9)}`
114114
const rsyncVersion = getRsyncVersion()

0 commit comments

Comments
 (0)