From da3ba1b5ff638af6851e05c1fa10076042c9bd9c Mon Sep 17 00:00:00 2001 From: Hussein Galal Date: Tue, 20 Jun 2023 19:27:40 +0300 Subject: [PATCH] Fix release ci (#43) --- .github/workflows/release.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 372a4ee0..eabcb0e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,12 @@ jobs: run: | cd /work && dapper ci - name: Publish Binaries - uses: SierraSoftworks/gh-releases@v1.0.7 - with: - token: ${{ secrets.TOKEN }} - overwrite: 'true' - files: | - ${{ github.workspace }}/bin/k3k - ${{ github.workspace }}/bin/k3kcli + uses: fnkr/github-action-ghr@v1 + if: startsWith(github.ref, 'refs/tags/') + env: + GHR_PATH: ${{ github.workspace }}/bin/ + GITHUB_TOKEN: ${{ secrets.TOKEN }} + GHR_REPLACE: true - name: Docker Hub Login uses: docker/login-action@v2 with: