Add printing of the lockfile after installation

Closes #783
This commit is contained in:
Jason Frey
2025-07-25 20:36:32 +02:00
committed by Benoit Daloze
parent bd6859cc58
commit e8621f0b86
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -99,6 +99,9 @@ export async function setupRuby(options = {}) {
if (inputs['bundler-cache'] === 'true') {
await common.time('bundle install', async () =>
bundler.bundleInstall(gemfile, lockFile, platform, engine, version, bundlerVersion, inputs['cache-version']))
await core.group(`Print lockfile`, async () =>
await exec.exec('cat', [lockFile]))
}
core.setOutput('ruby-prefix', rubyPrefix)