From 29c94f7224df480b96c2e8359de51f1ae6793608 Mon Sep 17 00:00:00 2001 From: Carine Bonnafous Date: Thu, 4 Jul 2024 09:08:26 +0200 Subject: [PATCH] fix: wrong release zip filename --- .github/workflows/release-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 852c08fe..ccd9ad82 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -81,8 +81,8 @@ jobs: -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ github.token }}" \ -H "Content-Type: application/zip" \ - -T "dist/alma.zip" \ - https://uploads.github.com/repos/${{ github.repository }}/releases/${{ steps.fetch-release-draft.outputs.id }}/assets?name=alma.zip + -T "dist/alma-php-client.zip" \ + https://uploads.github.com/repos/${{ github.repository }}/releases/${{ steps.fetch-release-draft.outputs.id }}/assets?name=alma-php-client.zip - name: Publish Github release uses: actions/github-script@v7