From 57642f6f103c90d28bc4c05ca98d1f98f3c89afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Thu, 30 May 2024 20:25:44 +0200 Subject: [PATCH] =?UTF-8?q?Use=20today=E2=80=99s=20date=20as=20release=20t?= =?UTF-8?q?itle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f34d5cb..35333503 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} + LC_TIME: en_US.UTF-8 steps: - uses: actions/checkout@v4 @@ -34,7 +35,7 @@ jobs: run: | gh release create "$GITHUB_REF_NAME" \ --repo "$GITHUB_REPOSITORY" \ - --title "Helma $GITHUB_REF_NAME" \ + --title "$(date +'%d %b %Y')" \ --generate-notes - name: Upload assets