Skip to content

Commit 768eb0d

Browse files
author
kaixuanxu
committed
chore: fix sec, remove key
1 parent dda5d3f commit 768eb0d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/validate-template/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@ runs:
2828

2929
- name: Validate template
3030
id: validate-template
31-
run: echo "::set-output name=result::$(deno run --allow-read ${{ github.action_path }}/src/main.ts ${{ inputs.path }} ${{ inputs.directory }})"
31+
run: |
32+
result=$(deno run --allow-read ${{ github.action_path }}/src/main.ts ${{ inputs.path }} ${{ inputs.directory }})
33+
echo "result=$result" >> $GITHUB_OUTPUT
3234
shell: bash

0 commit comments

Comments
 (0)