Skip to content

Commit

Permalink
change dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Zainrax committed Oct 1, 2024
1 parent 15f1af0 commit 52e965c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Configure Keystore
run: |
mkdir -p ~/.android
cp keystore.properties ~/.android/keystore.properties
cp sidekick/keystore.properties ~/.android/keystore.properties
- name: Cache Gradle packages
uses: actions/cache@v3
Expand All @@ -84,7 +84,9 @@ jobs:
${{ runner.os }}-gradle-
- name: Build Release
run: ./gradlew assembleRelease
run: |
cd sidekick
./gradlew assembleRelease
deploy:
name: Deploy to Google Play
Expand Down Expand Up @@ -134,6 +136,7 @@ jobs:
env:
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
run: |
cd sidekick
openssl enc -aes-256-cbc -pbkdf2 -iter 100000 \
-d -in signing.tar.enc -out signing.tar \
-pass pass:"$SIGNING_KEY_PASSWORD"
Expand All @@ -142,7 +145,7 @@ jobs:
- name: Configure Keystore
run: |
mkdir -p ~/.android
cp keystore.properties ~/.android/keystore.properties
cp sidekick/keystore.properties ~/.android/keystore.properties
- name: Install Fastlane
run: sudo gem install fastlane
Expand All @@ -154,4 +157,6 @@ jobs:
echo "GOOGLE_PLAY_JSON_KEY=api.json" >> $GITHUB_ENV
- name: Build and Deploy with Fastlane
run: fastlane alpha
run: |
cd sidekick
fastlane alpha

0 comments on commit 52e965c

Please sign in to comment.