Skip to content

Commit 4a2623d

Browse files
committed
Fix path in action.yml
1 parent e7bf722 commit 4a2623d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/demo.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3
8-
with:
9-
ref: ${{ github.ref_name }}
108
- uses: ./ # Uses the action in the root directory
119
id: demo
1210
with:

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ outputs:
1313
description: 'GitHub installation access token'
1414
runs:
1515
using: 'node16'
16-
main: 'dist/main.js'
17-
# post: 'dist/post.js'
16+
main: 'dist/main.cjs'
17+
# post: 'dist/post.cjs'

0 commit comments

Comments
 (0)