refactor(action): remove unused CLI setup steps
Some checks failed
Auto Changelog & Release / release (push) Failing after 2s

- Eliminate redundant steps for CLIFF version reading, git-cliff
  installation, and git setup to streamline action configuration
- Simplifies the workflow by focusing on essential functionality
This commit is contained in:
2025-06-14 18:48:37 +02:00
parent a66fc97f2a
commit 209c25d05a

View File

@@ -25,20 +25,3 @@ runs:
id: detect
run: |
bash ${{ github.action_path }}/scripts/detect-version-change.sh
- name: Read CLIFF_VERSION
shell: bash
id: cliff_version
run: bash ${{ github.action_path }}/scripts/read-cliff-version.sh
- name: Install git-cliff
shell: bash
run: |
bash ${{ github.action_path }}/scripts/install-git-cliff.sh "${{ steps.cliff_version.outputs.version }}"
- name: Set up git
shell: bash
run: |
bash ${{ github.action_path }}/scripts/setup-git.sh \
"${{ inputs.author_name }}" \
"${{ inputs.author_email }}"