Skip to content

Commit 6b6f293

Browse files
fix: create and push the tag to properly trigger the cococapods publish action (#217)
* fix: create and push the tag to properly trigger the cococapods publish action * feat: switch to git push --tags
1 parent aeb0bd0 commit 6b6f293

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ jobs:
6464
git push origin HEAD:main
6565
if: inputs.draft != true
6666

67+
- name: Create and push tag
68+
if: inputs.draft != true
69+
run: |
70+
git tag v${{ steps.prepare-release.outputs.next-release-tag }}
71+
git push --tags
72+
6773
# This will automatically trigger publishing to Carthage and Swift Package Manager
6874
- uses: DevCycleHQ/release-action/[email protected]
6975
id: create-release

0 commit comments

Comments
 (0)