From c6b84ea5428b0821c20349ea12b20c46c542497d Mon Sep 17 00:00:00 2001 From: olegfomenko2002 Date: Fri, 24 Nov 2023 00:40:08 +0200 Subject: [PATCH] trying to publish binary from image --- .github/workflows/tag.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 04e2005f..c5a78c4f 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -40,13 +40,11 @@ jobs: image: ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME path: "/usr/local/bin/rarimo-core" - - name: Release - uses: softprops/action-gh-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: ncipollo/release-action@v1 with: - files: ${{steps.extract.outputs.destination}}rarimo-core - tag_name: ${{ github.ref }} - name: Release ${{ github.ref }} - draft: false - prerelease: false \ No newline at end of file + allowUpdates: true + artifactErrorsFailBuild: true + artifacts: ${{steps.extract.outputs.destination}}/rarimo-core + tag: $GITHUB_REF_NAME + name: Release $GITHUB_REF_NAME + token: ${{ secrets.GITHUB_TOKEN }}