Skip to content

Commit

Permalink
fix: type in git cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Oct 3, 2024
1 parent 9103f33 commit a859294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
run: |
echo "Updating branch: v${{ inputs.major-version }}"
git tag -f v${{ inputs.major-version }}
git brach -f v${{ inputs.major-version }}
git branch -f v${{ inputs.major-version }}
git push -f origin refs/tags/v${{ inputs.major-version }}
git push -f origin refs/heads/v${{ inputs.major-version }}
- name: "Dry-run: Create and push branch"
Expand All @@ -27,6 +27,6 @@ runs:
echo "Updating branch: v${{ inputs.major-version }}"
echo " (dry-run)"
echo "git tag -f v${{ inputs.major-version }}"
echo "git brach -f v${{ inputs.major-version }}"
echo "git branch -f v${{ inputs.major-version }}"
echo "git push -f origin refs/tags/v${{ inputs.major-version }}"
echo "git push -f origin refs/heads/v${{ inputs.major-version }}"

0 comments on commit a859294

Please sign in to comment.