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 e6784cc commit 224de06Copy full SHA for 224de06
.github/workflows/release.yml
@@ -14,6 +14,9 @@ jobs:
14
steps:
15
- name: Checkout code
16
uses: actions/checkout@v4
17
+ with:
18
+ ref: main
19
+ fetch-depth: 0
20
21
- name: Set up JDK 21
22
uses: actions/setup-java@v4
@@ -64,7 +67,7 @@ jobs:
64
67
git config user.email "github-actions[bot]@users.noreply.github.com"
65
68
git add README.md
66
69
git diff --staged --quiet || git commit -m "docs: update version to ${{ steps.get_version.outputs.VERSION }} in README"
- git push
70
+ git push origin main
71
env:
72
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
0 commit comments