Skip to content

Commit

Permalink
fix: support artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Sep 3, 2024
1 parent ced55be commit 413e94a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ runs:
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact-name }}
path: ${{ github.workspace }}/artifact
- name: Create tag
shell: bash
run: |
Expand All @@ -47,7 +48,7 @@ runs:
with:
allowUpdates: true
omitNameDuringUpdate: true
artifacts: ${{ inputs.artifact-name }}
artifacts: ${{ github.workspace }}/artifact/*
token: ${{ inputs.github-token }}
name: ${{ inputs.version }}
tag: ${{ inputs.version }}
Expand Down

0 comments on commit 413e94a

Please sign in to comment.