From b6615c576f9a5cae0e86c0ea4b782278d9108023 Mon Sep 17 00:00:00 2001 From: Andrew Scholer Date: Thu, 31 Dec 2020 08:09:09 -0800 Subject: [PATCH] Improve naming out release output Avoid tagging with ref name - causes issues for future pushes --- .github/workflows/buildPDF.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildPDF.yml b/.github/workflows/buildPDF.yml index 902f2ba..bb1f0e4 100644 --- a/.github/workflows/buildPDF.yml +++ b/.github/workflows/buildPDF.yml @@ -18,8 +18,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + tag_name: ${{ github.sha }}-build + release_name: Release for ${{ github.sha }} body: Automatic build output draft: false prerelease: false