Skip to content

Commit

Permalink
ci(manual release): fix main branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
IATkachenko authored Jan 27, 2025
1 parent 8be8bfc commit a3e9791
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manual_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- name: Commit version
id: commit_version
run: |
git commit -m "chore(release): ${{ github.event.inputs.tag }}" custom_components/ha_tion_btle/manifest.json || true
git commit -m "chore(release): ${{ github.event.inputs.tag }}" custom_components/ha_tion_btle/manifest.json
- name: Update
id: update_tag
run: |
git push origin main && \
git tag -f -a -m "v${{ github.event.inputs.tag }}" v${{ github.event.inputs.tag }} && git push -f --tags || true
git push origin master && \
git tag -f -a -m "v${{ github.event.inputs.tag }}" v${{ github.event.inputs.tag }} && git push -f --tags
release:
name: "Create release"
Expand Down

0 comments on commit a3e9791

Please sign in to comment.