Skip to content

Commit be4668e

Browse files
authored
Merge pull request #41 from epignatelli/cd/fix-changelog
fix(cd): cd is trying to push to main
2 parents 8881220 + 6bb9f19 commit be4668e

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/CD.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,14 @@ jobs:
1919
2020
echo "NAVIX_VERSION=$NAVIX_VERSION" >> $GITHUB_ENV
2121
22-
- name: Create and push tag
23-
run: |
24-
echo "Creating tag ${{ env.NAVIX_VERSION }}"
25-
git tag ${{ env.NAVIX_VERSION }}
26-
git push --tags
27-
28-
- name: Create changelog
22+
- name: Create changelog and push tag
2923
id: changelog
3024
uses: TriPSs/conventional-changelog-action@v3
3125
with:
3226
github-token: ${{ secrets.GITHUB_TOKEN }}
33-
output-file: "false"
27+
output-file: false
3428
fallback-version: ${{ env.NAVIX_VERSION }}
29+
skip-commit: true
3530

3631
- name: Create Release
3732
uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)