Skip to content

Commit

Permalink
Update code-review.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DZZN-DEV authored May 17, 2024
1 parent 21988e2 commit 6e1a36d
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,30 @@ jobs:
with:
node-version: '16'

- name: Run NVM Install
run: nvm install

- name: Run Yarn Install
run: yarn install

- name: Build application
run: yarn release
- name: install node dependencies
run: yarn

- name: switch ruby version & dependencies
run: rbenv install --skip-existing && bundle install && cp .env.example .env

- name: android (TV) debug
run: yarn android

- name: android (TV) release
run: yarn android:release

- name: List the .apks compiled
run: ls ./android/app/build/outputs/apk/release/ -hal

- name: Rename the .apk to the tag version
run: mv ./android/app/build/outputs/apk/release/app-universal-release.apk ./android/app/build/outputs/apk/release/app_name_${{ github.ref_name }}.apk


# Creating and Uploading the releases
- name: Create Release and Uploading Files
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 6e1a36d

Please sign in to comment.