Skip to content

Commit e48274b

Browse files
committed
fix: support artifact upload
1 parent 7454697 commit e48274b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ inputs:
1111
github-token:
1212
description: "GitHub Token"
1313
required: true
14-
artifacts:
15-
description: "An optional set of paths representing artifacts to upload to the release. This may be a single path or a comma delimited list of paths (or globs)"
14+
artifact-name:
15+
description: "An optional artifact name to upload to the release."
1616
required: false
1717
default: ""
1818
outputs:
@@ -26,6 +26,10 @@ runs:
2626
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29+
- name: Download package
30+
uses: actions/download-artifact@v4
31+
with:
32+
name: ${{ inputs.artifact-name }}
2933
- name: Create tag
3034
shell: bash
3135
run: |

0 commit comments

Comments
 (0)