Skip to content

Commit

Permalink
fix: GH actions CI provider repoUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Razon committed Jul 24, 2023
1 parent 7e5544b commit cb6dc28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/ci-providers/github-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const githubActionsCiProvider = (): CiProvider => ({
),
repoUrl: () => (
(process.env.GITHUB_REPOSITORY && process.env.GITHUB_SERVER_URL)
? `https://${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}.git`
? `${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}.git`
: undefined
),
})

0 comments on commit cb6dc28

Please sign in to comment.