We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e8c483 commit 5c8b70cCopy full SHA for 5c8b70c
action.yml
@@ -103,6 +103,8 @@ outputs:
103
description: 'The branch, tag or SHA that was checked out'
104
commit:
105
description: 'The commit SHA that was checked out'
106
+ path:
107
+ description: 'The absolute path that was checked out to'
108
runs:
109
using: node24
110
main: dist/index.js
src/main.ts
@@ -20,6 +20,7 @@ async function run(): Promise<void> {
20
// Get sources
21
await gitSourceProvider.getSource(sourceSettings)
22
core.setOutput('ref', sourceSettings.ref)
23
+ core.setOutput('path', sourceSettings.repositoryPath)
24
} finally {
25
// Unregister problem matcher
26
coreCommand.issueCommand('remove-matcher', {owner: 'checkout-git'}, '')
0 commit comments