diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 4786c4e..cf23b96 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -15,6 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: java-version: '11' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2256520..25cda62 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,13 @@ jobs: preset: 'conventionalcommits' output-file: 'docs/CHANGELOG.md' skip-version-file: 'true' + git-push: false + + - name: Push Tag + run: ./gradlew push --tags + + - name: Push Branch + run: ./gradlew push - name: Create Release uses: actions/create-release@v1