Set the release title to today’s date as formatted string

This commit is contained in:
Tobi Schäfer 2025-02-15 15:45:49 +01:00
parent 156db3ee98
commit ff4b4b0f07
Signed by: tobi
GPG key ID: 91FAE6FE2EBAC4C8

View file

@ -3,8 +3,7 @@ name: Release
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
tags: tags: '2*'
- 'v*'
permissions: permissions:
contents: write contents: write
@ -16,6 +15,7 @@ jobs:
env: env:
GH_TOKEN: ${{ github.token }} GH_TOKEN: ${{ github.token }}
LC_TIME: en_US.UTF-8 LC_TIME: en_US.UTF-8
TODAY: $(date +'%d %b %Y')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -28,6 +28,8 @@ jobs:
direction: upload direction: upload
url: https://code.host.antville.org url: https://code.host.antville.org
token: ${{ github.token }} token: ${{ github.token }}
title: ${{ env.TODAY }}
#tag: $(date +'%Y.%m.%d')
release-dir: build/distributions release-dir: build/distributions
release-notes-assistant: true release-notes-assistant: true
verbose: true verbose: true