From 4ffc5d40697e36f0d65d5d5f4dd3afd0a89c9c88 Mon Sep 17 00:00:00 2001 From: Zane Schepke Date: Sat, 27 Jul 2024 07:42:02 -0400 Subject: [PATCH] fix: play deploy job --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4137721..d86ff9d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -187,11 +187,23 @@ jobs: GH_TOKEN: ${{ secrets.GH_TOKEN }} steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Deploy with fastlane uses: ruby/setup-ruby@v1 with: ruby-version: '3.2' # Not needed with a .ruby-version file bundler-cache: true + - name: Distribute app to Prod track 🚀 run: (cd ${{ github.workspace }} && bundle install && bundle exec fastlane ${{ inputs.track }})