Skip to content

Commit

Permalink
fix: update upload artifact params #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
grinish21 committed Jun 23, 2021
1 parent 3f2d452 commit 65a1fe9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
INITIAL_VERSION: 2.0.0
release:
needs: build
name: Tag and Release
name: Release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create-release.outputs.upload_url }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: ./binaries/go-earlybird-linux
asset_path: go-earlybird-linux
asset_name: go-earlybird-linux
asset_content_type: application/octet-stream
publishmacOS:
Expand All @@ -83,7 +83,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: ./binaries/go-earlybird
asset_path: go-earlybird
asset_name: go-earlybird-macos
asset_content_type: application/octet-stream
publishWindows:
Expand All @@ -102,6 +102,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: ./binaries/go-earlybird.exe
asset_path: go-earlybird.exe
asset_name: go-earlybird.exe
asset_content_type: application/x-msdownload

0 comments on commit 65a1fe9

Please sign in to comment.