Skip to content

Commit

Permalink
Merge pull request #19 from NeoSOFT-Technologies/multi-package
Browse files Browse the repository at this point in the history
Cd scripts path corrections
  • Loading branch information
faiyyazs authored Aug 29, 2022
2 parents dc0a441 + a8d84dd commit 303464d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ jobs:
run: melos run generate

- name: Bump Build Number
run: app/scripts/bump-build-number.sh
run: scripts/bump-build-number.sh
working-directory: app/

- name: Decode Keystore
id: decode_keystore
Expand All @@ -58,10 +59,12 @@ jobs:
encodedString: ${{ secrets.KEYSTORE }}

- name: Set Flavor Name
run: app/scripts/set-flavor-and-apk-path-to-env.sh
run: scripts/set-flavor-and-apk-path-to-env.sh
working-directory: app/

- name: Build APK
run: app/scripts/build.sh apk $FLAVOR_NAME --release --obfuscate --split-debug-info=debug-info
run: scripts/build.sh apk $FLAVOR_NAME --release --obfuscate --split-debug-info=debug-info
working-directory: app/
env:
KEY_STORE_PATH: ${{ steps.decode_keystore.outputs.filePath }}
RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }}
Expand All @@ -78,7 +81,8 @@ jobs:
# notifyTesters: true

- name: Add Tag Name to ENV
run: app/scripts/gh-action-read-and-set-version-env.sh
run: scripts/gh-action-read-and-set-version-env.sh
working-directory: app/

- name: Create Release and Add APK Artifact
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 303464d

Please sign in to comment.