From 5cc78e14e4c7b490ab956cf8fd7ce94cb764350c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 17 May 2023 16:15:41 +0300 Subject: [PATCH] Fix(github): Changelog generator fixes --- .github/workflows/changelog.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 21bf562..521770a 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -5,18 +5,13 @@ on: workflow_dispatch: # Trigger manually jobs: - create-debug-changelog: + changelog: runs-on: ubuntu-latest - outputs: - date: ${{ steps.day.outputs.now }} steps: - uses: actions/checkout@v3 - - id: day - run: echo "now=$(date +'%Y.%-m.%-d')" >> "$GITHUB_OUTPUT" - - name: Conventional Changelog Action - id: changelog + id: generate-changelog uses: TriPSs/conventional-changelog-action@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -30,7 +25,7 @@ jobs: tag-prefix: "" git-push: "false" release-count: "0" - fallback-version: "${{ steps.day.outputs.date }}" + fallback-version: "22.11.14" # The oldest tag git-message: "chore(release): {version}" git-user-name: "${{ github.actor }}" git-user-email: "${{ github.actor }}@users.noreply.github.com"