From 9b01365db3fd56193f3992561dcd055f9dbe3678 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 26 May 2023 08:01:34 +0200 Subject: [PATCH] ci: make sure releases are staying active --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 061df03..f3df74d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,9 @@ jobs: with: token: ${{ secrets.BOT_ACCESS_TOKEN }} + - name: Write buildtime + run: date >| .github/RELEASEDATE + - name: Semantic release uses: cycjimmy/semantic-release-action@v3 env: @@ -24,4 +27,14 @@ jobs: extra_plugins: | conventional-changelog-conventionalcommits + - name: Commit changes + uses: EndBug/add-and-commit@v9 + with: + author_name: GitHub Actions + author_email: github@webhippie.de + add: .github/RELEASEDATE + message: "docs: automated release update [skip ci]" + push: true + commit: --signoff + ...