From 0061840aeea846205b72519f062a36b98e516e44 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 30 Oct 2021 12:19:47 +0300 Subject: [PATCH] fix --- .github/workflows/release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 779fb7d..59e9b0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ # # This type of prelease is useful to make your bleeding-edge binaries available to advanced users. # -# The workflow will not run if there is no tag pushed with a "v" prefix and no change pushed to your +# The workflow will not run if there is no tag pushed with a "v" prefix and no change pushed to your # default branch. on: push @@ -20,12 +20,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - - name: Prepare Release Variables + with: + fetch-depth: 0 + + - name: Prepare Release Variables id: vars uses: tendermint/starport/actions/release/vars@develop - - name: Issue Release Assets + - name: Issue Release Assets uses: tendermint/starport/actions/cli@develop if: ${{ steps.vars.outputs.should_release == 'true' }} with: @@ -46,6 +48,6 @@ jobs: with: tag_name: ${{ steps.vars.outputs.tag_name }} files: release/* - prerelease: true + prerelease: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}