From 2df0e7e4cc0137561a8b0cc43b9b886a4c8d693f Mon Sep 17 00:00:00 2001 From: Yimura Date: Mon, 3 Jan 2022 17:47:35 +0100 Subject: [PATCH] fix(Actions): Do not use short sha in release tag --- .github/workflows/nightly.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index cdbe2229..0ac05959 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -59,7 +59,7 @@ jobs: uses: softprops/action-gh-release@v1 with: name: Nightly Release ${{ steps.vars.outputs.sha_short }} - tag_name: nightly_${{ steps.vars.outputs.sha_short }} + tag_name: nightly body: | This nightly release is provided for testing purposes only, there's no warrenty provided if your account gets banned online. @@ -71,4 +71,4 @@ jobs: - name: Keep only the last 7 nightly builds, any other nightlies will be removed uses: dev-drprasad/delete-older-releases@v0.2.0 keep_latest: 7 - delete_tag_pattern: "nightly_*" \ No newline at end of file + delete_tag_pattern: nightly \ No newline at end of file