Skip to content

Commit

Permalink
revert test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Dec 23, 2024
1 parent 30924f6 commit 9fbdfcc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4
with:
ref: ci-auto-version-bump

- name: Bump version
- name: Bump version in gradle.properties
run: |
newVersion=$(echo $newVersion | sed 's/^v//')
sed -i.bak "s/^version=.*/version=$newVersion/" gradle.properties
Expand All @@ -40,7 +38,7 @@ jobs:
- name: Push changes
run: |
git push origin ci-auto-version-bump
git push origin master
# Push tag
git push origin $newVersion
Expand Down Expand Up @@ -73,12 +71,12 @@ jobs:
with:
file: ${{ needs.build.outputs.uber-jar }}
tags: true
draft: true
draft: false
tag_name: ${{ github.event.inputs.tag_name }}
# - name: Deploy to Maven Central repository
# run: ./gradlew publish
# env:
# MAVEN_REPO_USERNAME: ${{ secrets.MAVEN_REPO_USERNAME }}
# MAVEN_REPO_PASSWORD: ${{ secrets.MAVEN_REPO_PASSWORD }}
# GRADLE_SIGNING_KEY: ${{ secrets.GRADLE_SIGNING_KEY }}
# GRADLE_SIGNING_PASSWORD: ${{ secrets.GRADLE_SIGNING_PASSWORD }}
- name: Deploy to Maven Central repository
run: ./gradlew publish
env:
MAVEN_REPO_USERNAME: ${{ secrets.MAVEN_REPO_USERNAME }}
MAVEN_REPO_PASSWORD: ${{ secrets.MAVEN_REPO_PASSWORD }}
GRADLE_SIGNING_KEY: ${{ secrets.GRADLE_SIGNING_KEY }}
GRADLE_SIGNING_PASSWORD: ${{ secrets.GRADLE_SIGNING_PASSWORD }}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.0.999
version=3.5.0
jdbcVersion=4.3

0 comments on commit 9fbdfcc

Please sign in to comment.