Compare commits
5 Commits
1790ca7f76
...
271a9df5fb
Author | SHA1 | Date | |
---|---|---|---|
|
271a9df5fb | ||
|
3b5e8836ec | ||
|
0fa2b7d3a5 | ||
|
c3e0d9f20f | ||
|
d2316507fd |
@ -26,3 +26,4 @@ inputs:
|
||||
runs:
|
||||
using: node12
|
||||
main: dist/index.js
|
||||
post: dist/index.js
|
||||
|
BIN
dist/index.js
vendored
BIN
dist/index.js
vendored
Binary file not shown.
11
src/index.ts
11
src/index.ts
@ -1,10 +1,19 @@
|
||||
import { setFailed } from '@actions/core'
|
||||
import { setFailed, getState } from '@actions/core'
|
||||
import getInputs from './inputs'
|
||||
import setOutputs from './outputs'
|
||||
import installPnpm from './install-pnpm'
|
||||
import pnpmInstall from './pnpm-install'
|
||||
|
||||
async function main() {
|
||||
const isPost = getState('isPost')
|
||||
console.log({
|
||||
is_post: getState('is_post'),
|
||||
isPost: getState('isPost'),
|
||||
STATE_isPost: process.env['STATE_isPost'],
|
||||
})
|
||||
if (isPost) {
|
||||
return
|
||||
}
|
||||
const inputs = getInputs()
|
||||
await installPnpm(inputs)
|
||||
console.log('Installation Completed!')
|
||||
|
Loading…
Reference in New Issue
Block a user