We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c260d commit 7d7f893Copy full SHA for 7d7f893
1 file changed
.github/workflows/pypi.yml
@@ -37,7 +37,7 @@ jobs:
37
run: commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
38
39
- name: "Get Previous tag"
40
- id: previoustag
+ id: previoustagold
41
uses: "WyriHaximus/github-action-get-previous-tag@v1"
42
43
- name: Conventional Changelog Action
@@ -53,7 +53,11 @@ jobs:
53
skip-commit: true
54
skip-ci: false
55
skip-tag: ${{ github.ref_name != 'main' }}
56
- fallback-version: ${{ steps.previoustag.outputs.tag }}
+ fallback-version: ${{ steps.previoustagold.outputs.tag }}
57
+
58
+ - name: "Get Previous tag"
59
+ id: previoustag
60
+ uses: "WyriHaximus/github-action-get-previous-tag@v1"
61
62
- uses: actions/setup-python@v5
63
with:
0 commit comments