We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f226c0 commit 16959f5Copy full SHA for 16959f5
.github/workflows/cd.yml
@@ -36,12 +36,15 @@ jobs:
36
- name: Create worktree for changelog
37
run: git worktree add worktree-changelog origin/main
38
39
- - name: Generate changelog in worktree
40
- working-directory: worktree-changelog
41
- uses: orhun/git-cliff-action@main
+ - name: Install git-cliff
+ uses: taiki-e/install-action@v2
42
with:
43
- config: pyproject.toml
44
- args: -vv --latest --strip header --output docs/changelog.rst
+ tool: git-cliff
+
+ - name: Generate changelog in worktree
45
+ run: |
46
+ cd worktree-changelog
47
+ git-cliff --config ../pyproject.toml -vv --latest --strip header --output docs/changelog.rst
48
49
- name: Commit and push changelog
50
working-directory: worktree-changelog
0 commit comments