From 39a5ce975f538a2a70923ccd16d86082349d1790 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 16 Jan 2024 14:39:16 +0100 Subject: [PATCH] chore(templates): update release action with console do not track + ` y` (#3890) * chore(templates): update release action with `-y` * fixes --- .../app/files/.github/workflows/release.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ignite/templates/app/files/.github/workflows/release.yml b/ignite/templates/app/files/.github/workflows/release.yml index 8ef93a3005..0d472b4284 100644 --- a/ignite/templates/app/files/.github/workflows/release.yml +++ b/ignite/templates/app/files/.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 @@ -22,16 +22,18 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 - - - name: Prepare Release Variables + + - name: Prepare Release Variables id: vars uses: ignite/cli/actions/release/vars@main - - name: Issue Release Assets + - name: Issue Release Assets uses: ignite/cli/actions/cli@main if: ${{ steps.vars.outputs.should_release == 'true' }} with: - args: chain build --release --release.prefix ${{ steps.vars.outputs.tarball_prefix }} -t linux:amd64 -t darwin:amd64 -t darwin:arm64 + args: chain build --release --release.prefix ${{ steps.vars.outputs.tarball_prefix }} -t linux:amd64 -t darwin:amd64 -t darwin:arm64 -y + env: + DO_NOT_TRACK: 1 - name: Delete the "latest" Release uses: dev-drprasad/delete-tag-and-release@v0.2.1 @@ -48,6 +50,6 @@ jobs: with: tag_name: ${{ steps.vars.outputs.tag_name }} files: release/* - prerelease: true + prerelease: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}