Skip to content

Commit 413e94a

Browse files
committed
fix: support artifact upload
1 parent ced55be commit 413e94a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ runs:
3030
uses: actions/download-artifact@v4
3131
with:
3232
name: ${{ inputs.artifact-name }}
33+
path: ${{ github.workspace }}/artifact
3334
- name: Create tag
3435
shell: bash
3536
run: |
@@ -47,7 +48,7 @@ runs:
4748
with:
4849
allowUpdates: true
4950
omitNameDuringUpdate: true
50-
artifacts: ${{ inputs.artifact-name }}
51+
artifacts: ${{ github.workspace }}/artifact/*
5152
token: ${{ inputs.github-token }}
5253
name: ${{ inputs.version }}
5354
tag: ${{ inputs.version }}

0 commit comments

Comments
 (0)