Skip to content

Commit

Permalink
Chore: Fix publish action (#1174)
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbeesetti authored Dec 19, 2024
1 parent 23c40bf commit d79c690
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/update_version_and_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,27 @@ jobs:
git config user.email "actions@github.com"
git add .
git commit -m "Release version ${{ env.VERSION_NAME }}" || echo "No changes to commit"
git config push.autoSetupRemote true
git push --set-upstream origin ${BRANCH_NAME}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
bundler-cache: true

- name: Set Up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
validate-wrappers: true
gradle-home-cache-cleanup: true

- name: Decode keystore file
uses: timheuer/base64-to-file@v1
id: keystore
Expand Down Expand Up @@ -127,5 +146,4 @@ jobs:
files: app/build/outputs/apk/release/nextplayer*
draft: true
name: v${{ env.VERSION_NAME }}
body: |
Your release notes go here.
generate_release_notes: true

0 comments on commit d79c690

Please sign in to comment.