From fb37d6278fd7f04447ea3a99593b372146cafde4 Mon Sep 17 00:00:00 2001 From: Christophe Camel Date: Mon, 31 Jan 2022 20:39:07 +0100 Subject: [PATCH] chore(ci): make yaml linter happy --- .github/workflows/release.yml | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9af04153d..d7dc31a0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,17 +1,5 @@ -# This workflow is useful if you want to automate the process of: -# -# a) Creating a new prelease when you push a new tag with a "v" prefix (version). -# -# This type of prerelease is meant to be used for production: alpha, beta, rc, etc. types of releases. -# After the prerelease is created, you need to make your changes on the release page at the relevant -# Github page and publish your release. -# -# b) Creating/updating the "latest" prerelease when you push to your default branch. -# -# 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 -# default branch. +name: Release + on: push jobs: @@ -22,12 +10,12 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 - - - name: Prepare Release Variables + + - 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: @@ -48,6 +36,6 @@ jobs: with: tag_name: ${{ steps.vars.outputs.tag_name }} files: release/* - prerelease: true + prerelease: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}