From ec2602907e08efb2c1d3d0a46ed59932f9e48ec3 Mon Sep 17 00:00:00 2001 From: Alec Aivazis Date: Fri, 29 May 2020 02:20:46 -0700 Subject: [PATCH] added missing file extension in windows release executable --- .github/workflows/deploy-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 8fdcac0..1001702 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -76,6 +76,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: ./bin/gateway_windows_amd64 - asset_name: gateway_windows_amd64 + asset_path: ./bin/gateway_windows_amd64.exe + asset_name: gateway_windows_amd64.exe asset_content_type: application/x-binary