mirror of
https://code.forgejo.org/pnpm/action-setup.git
synced 2025-05-18 12:34:46 +00:00
Only warn on failure of post action
This commit is contained in:
parent
b1febf84ed
commit
6eb237a86d
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
import { spawnSync } from 'child_process'
|
||||
import { setFailed } from '@actions/core'
|
||||
import { warning } from '@actions/core'
|
||||
import { Inputs } from '../inputs'
|
||||
import { patchPnpmEnv } from '../utils'
|
||||
|
||||
|
@ -17,12 +17,12 @@ export function pruneStore(inputs: Inputs) {
|
|||
})
|
||||
|
||||
if (error) {
|
||||
setFailed(error)
|
||||
warning(error)
|
||||
return
|
||||
}
|
||||
|
||||
if (status) {
|
||||
setFailed(`command pnpm store prune exits with code ${status}`)
|
||||
warning(`command pnpm store prune exits with code ${status}`)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue