We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cfa5a2 commit 69c6874Copy full SHA for 69c6874
README.md
@@ -15,7 +15,6 @@ Originally designed to run `git pull --rebase -X ours` or `git pull --rebase -X
15
## Usage
16
17
```yaml
18
-- run: cd test-action-dir && echo 1>>f && git status -s && git diff --staged --name-only
19
- name: Git Commit and Push Action
20
uses: mgrybyk/git-commit-pull-push-action@v1
21
with:
tag.sh
@@ -0,0 +1,5 @@
1
+TAG_MAJOR=v1
2
+git tag --delete $TAG_MAJOR
3
+git push --delete origin $TAG_MAJOR
4
+git tag $TAG_MAJOR
5
+git push --tags
0 commit comments