diff --git a/.github/workflows/upload-release-asset.yml b/.github/workflows/upload-release-asset.yml
index f4b2d7eb..ba0b6883 100644
--- a/.github/workflows/upload-release-asset.yml
+++ b/.github/workflows/upload-release-asset.yml
@@ -21,16 +21,14 @@ jobs:
         run: |
           response=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/releases/latest")
           release_id=$(echo "$response" | jq -r '.id')
-          echo "::set-output name=release_id::$release_id"
 
       - name: Get Latest Release Upload URL
         id: get-release-upload-url
         run: |
           response=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/releases/latest")
           upload_url=$(echo "$response" | jq -r '.upload_url' | sed 's/{?name,label}//g')
-          echo "::set-output name=upload_url::$upload_url"
 
-      - name: Use Latest Release Info
+      - name: Display Latest Release Info
         run: |
           echo "Latest Release ID: ${{ steps.get-release-id.outputs.release_id }}"
           echo "Latest Release Upload URL: ${{ steps.get-release-upload-url.outputs.upload_url }}"
@@ -46,19 +44,5 @@ jobs:
           -H "X-GitHub-Api-Version: 2022-11-28" \
           -H "Content-Type: application/zip" \
           ${{ steps.get-release-upload-url.outputs.upload_url }}?name=AdyenPaymentShopware6.zip \
-          -F "data=@AdyenPaymentShopware6.zip"
-#            --hostname  https://uploads.github.com \
-#            /repos/Adyen/adyen-shopware6/releases/155824733/assets?name=AdyenPaymentShopware6.zip \
-
-
-
-#        uses: alexellis/upload-assets@0.4.1
-#        env:
-#          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-#        with:
-#          asset_paths: '["./AdyenPaymentShopware6.zip"]'
-
-#          upload_url: ${{ steps.get-release-upload-url.outputs.upload_url }}
-#          asset_name: AdyenPaymentShopware6.zip
-#          asset_content_type: application/zip
-
+#          -F "data=@AdyenPaymentShopware6.zip"
+          --data-binary "@AdyenPaymentShopware6.zip" \
\ No newline at end of file