diff --git a/.github/workflows/build_binaries.yaml b/.github/workflows/build_binaries.yaml index 82ad46e..686b6c9 100644 --- a/.github/workflows/build_binaries.yaml +++ b/.github/workflows/build_binaries.yaml @@ -19,13 +19,13 @@ jobs: - name: Check out code uses: actions/checkout@v2 - name: Build Binary for linux - run: go build -o lndhub-${{github.event.release.tag_name}}linux-x86_64 + run: go build -o lndhub-${{github.event.release.tag_name}}-linux-x86_64 - name: Upload to release assets uses: actions/upload-release-asset@v1.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./lndhub-${{github.event.release.tag_name}}linux-x86_64 - asset_name: lndhub-${{github.event.release.tag_name}}linux-x86_64 + asset_path: ./lndhub-${{github.event.release.tag_name}}-linux-x86_64 + asset_name: lndhub-${{github.event.release.tag_name}}-linux-x86_64 asset_content_type: binary/octet-stream \ No newline at end of file