Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
superwunc committed Jun 17, 2024
1 parent 1ae71e0 commit 4c0a468
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 6 deletions.
32 changes: 28 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from '@actions/core'
import * as core from '@actions/core'
import { wait } from './wait'

Check failure on line 2 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

'wait' is defined but never used

Check failure on line 2 in src/main.ts

View workflow job for this annotation

GitHub Actions / TypeScript Tests

'wait' is defined but never used
import fs from 'node:fs'
/**
Expand All @@ -7,6 +7,7 @@ import fs from 'node:fs'
*/
export async function run(): Promise<void> {
try {
console.log('core')
const www = fs.existsSync('dist')
core.setOutput('dist', www)
const www2 = fs.existsSync('src')
Expand Down

0 comments on commit 4c0a468

Please sign in to comment.