Skip to content

Commit

Permalink
Fix release creation from artifact (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: Lucchetto <[email protected]>
  • Loading branch information
Lucchetto authored Feb 15, 2025
1 parent c03a671 commit 97a2fb1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ jobs:
uses: actions/download-artifact@v4
with:
name: ${{ needs.create-onnx-runtime-artifact.outputs.artifact-name }}

- name: Unzip artifact content
run: unzip -o "${{ needs.create-onnx-runtime-artifact.outputs.artifact-name }}.zip" -d extracted/
path: artifact-content

- name: Create release
uses: softprops/action-gh-release@v2
with:
files: extracted/**
files: artifact-content/**
draft: true
body: |
ONNX Runtime version: ${{ env.ONNXRUNTIME_VERSION }}
Expand Down

0 comments on commit 97a2fb1

Please sign in to comment.