From 9602168b02628750c72a75b8d85001ff9fc8e037 Mon Sep 17 00:00:00 2001 From: Abhimanyu121 Date: Thu, 22 Oct 2020 13:34:53 +0530 Subject: [PATCH] changed upload action Signed-off-by: Abhimanyu121 --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b998b87..c980d77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,13 +32,13 @@ jobs: fi - name: Build run: cd easyDoser-server/ && go build -v . - - name: Upload the artifacts - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 with: - releaseId: '0.2' - args: 'easyDoser-server/easyDoser-server' + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: easyDoser-server/easyDoser-server + asset_name: easyDoser-server + tag: 0.2 - uses: actions/checkout@v2 - name: Use Node.js 14.x