From 489782d45eac6e3a0a5bbeb2569f4f32a4dd7159 Mon Sep 17 00:00:00 2001 From: Paciente8159 Date: Tue, 17 Oct 2023 16:41:05 +0100 Subject: [PATCH] fix pio-release.yaml --- .github/workflows/pio-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pio-release.yaml b/.github/workflows/pio-release.yaml index 1d643f555..e569384e4 100644 --- a/.github/workflows/pio-release.yaml +++ b/.github/workflows/pio-release.yaml @@ -48,8 +48,8 @@ jobs: - name: Download binaries uses: actions/download-artifact@v3 with: - name: ${{matrix.boards}} - path: ./${{matrix.boards}}.zip + name: ${{matrix.boards}}.zip + path: ./ - name: Display structure of downloaded files run: ls -R - name: Create Release @@ -69,6 +69,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./${{matrix.boards}}.zip + asset_path: ${{matrix.boards}}.zip asset_name: ${{matrix.boards}}.zip asset_content_type: application/zip