diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 38939b4..a87c816 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -32,6 +32,7 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ github.event.repository.name }} + path: ${{ github.event.repository.name }} - id: release_info uses: toolmantim/release-drafter@v5 env: @@ -57,6 +58,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.release_info.outputs.upload_url }} - asset_path: ./${{ github.event.repository.name }}/${{ github.event.repository.name }}.zip + asset_path: ${{ github.event.repository.name }}/${{ github.event.repository.name }}.zip asset_name: ${{ github.event.repository.name }}.zip asset_content_type: application/zip