mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-05 10:12:53 +01:00
ENBL-4519 adding output variable to set the repo path
This commit is contained in:
parent
e6a424882a
commit
8f88041d21
3 changed files with 6 additions and 0 deletions
|
@ -71,6 +71,9 @@ inputs:
|
|||
When the `ssh-key` input is not provided, SSH URLs beginning with `git@github.com:` are
|
||||
converted to HTTPS.
|
||||
default: false
|
||||
outputs:
|
||||
WORKSPACE_DIR:
|
||||
description: working directory for the project
|
||||
runs:
|
||||
using: node12
|
||||
main: dist/index.js
|
||||
|
|
1
dist/index.js
vendored
1
dist/index.js
vendored
|
@ -1535,6 +1535,7 @@ function getInputs() {
|
|||
if (!allowParentPath && !(result.repositoryPath + path.sep).startsWith(githubWorkspacePath + path.sep)) {
|
||||
throw new Error(`Repository path '${result.repositoryPath}' is not under '${githubWorkspacePath}'`);
|
||||
}
|
||||
core.setOutput('WORKSPACE_DIR', result.repositoryPath);
|
||||
// Workflow repository?
|
||||
const isWorkflowRepository = qualifiedRepository.toUpperCase() ===
|
||||
`${github.context.repo.owner}/${github.context.repo.repo}`.toUpperCase();
|
||||
|
|
|
@ -51,6 +51,8 @@ export function getInputs(): IGitSourceSettings {
|
|||
)
|
||||
}
|
||||
|
||||
core.setOutput('WORKSPACE_DIR', result.repositoryPath)
|
||||
|
||||
// Workflow repository?
|
||||
const isWorkflowRepository =
|
||||
qualifiedRepository.toUpperCase() ===
|
||||
|
|
Loading…
Reference in a new issue