Skip to content

Commit

Permalink
ci: push force tag of snapshot release
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdbd committed Oct 4, 2024
1 parent e165030 commit bdb5806
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -365,13 +365,13 @@ jobs:
- name: 🛎️ Checkout
uses: actions/checkout@v4

- name: Tag commit
- name: Tag commit and push force it
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git status
git tag -a v${{ env.POD_VERSION }} -m "This version was published to Clojars: https://clojars.org/com.github.jackdbd/pod.jackdbd.jsoup/versions/${{ env.POD_VERSION }}" --force
git describe
git tag --force -a v${{ env.POD_VERSION }} -m "This version was published to Clojars: https://clojars.org/com.github.jackdbd/pod.jackdbd.jsoup/versions/${{ env.POD_VERSION }}"
git push --force origin v${{ env.POD_VERSION }}
github-release:
name: GitHub release
Expand Down

0 comments on commit bdb5806

Please sign in to comment.