From 97ab7f55e15cc72c61b33693a5e202d33bc6eae7 Mon Sep 17 00:00:00 2001
From: Renata <rvaderna@openlawlib.org>
Date: Wed, 26 Jun 2024 01:49:44 -0400
Subject: [PATCH] test

---
 .github/workflows/deploy.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 8b08653b8..6dd89ed5c 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -169,9 +169,10 @@ jobs:
         if: matrix.os == 'ubuntu-latest'
         uses: actions/upload-release-asset@v1
         with:
-          upload_url: $UPLOAD_URL
+          upload_url: ${{needs.create_release.outputs.upload_url}}
           asset_path: dist/taf
           asset_name: taf-linux
+          asset_content_type: application/x-executable
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 
@@ -182,6 +183,7 @@ jobs:
           upload_url: ${{needs.create_release.outputs.upload_url}}
           asset_path: dist/taf.exe
           asset_name: taf-windows
+          asset_content_type: application/octet-stream
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 
@@ -192,6 +194,7 @@ jobs:
           upload_url: ${{needs.create_release.outputs.upload_url}}
           asset_path: dist/taf
           asset_name: taf-macos
+          asset_content_type: application/octet-stream
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}