One console log, crashed the entire app #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
pwa_to_apk_job: | |
runs-on: ubuntu-latest | |
name: PWA to APK | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Running PWA to apk action for apk generation | |
- name: Running PWA to APK action | |
uses: sharadcodes/pwa-to-apk-action@v1.0.0 | |
with: | |
project-root-folder: "." | |
# This one below is a seperate action which I'm using for releasing apk | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: '*.apk' # Selecting all the apk files | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: v1.0.0 # this is used in releases and has nothing to do with the pwa-to-apk-action | |
# it is only used in softprops/action-gh-release action |