Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank1234 authored Aug 8, 2024
1 parent b304856 commit 586c0b3
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@ on:
branches: [ 'develop' ]

jobs:
prepareAll:
uses: ./.github/workflows/_prepareAll.yml
prepareRelease:
uses: ./.github/workflows/_prepareRelease.yml
secrets:
KEYSTORE_BASE_64: ${{ secrets.KEYSTORE_BASE_64 }}
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
RELEASE_KEYSTORE_ALIAS: ${{ secrets.RELEASE_KEYSTORE_ALIAS }}
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
build:
runs-on: macos-latest # use [ self-hosted, macOS ] to host on our own mac mini, which is twice as fast and cheaper than hosting on a github runner. See README for more info.
steps:
- uses: actions/checkout@v3

- name: Prepare build
uses: ./.github/workflows/scripts/prepare

- name: Prepare release build
uses: ./.github/workflows/scripts/prepare_release
env:
RELEASE_KEYSTORE_PASSWORD: "${{ secrets.RELEASE_KEYSTORE_PASSWORD }}"
RELEASE_KEYSTORE_ALIAS: "${{ secrets.RELEASE_KEYSTORE_ALIAS }}"
RELEASE_KEY_PASSWORD: "${{ secrets.RELEASE_KEY_PASSWORD }}"

- name: Build Prod Release APK
env:
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
Expand Down

0 comments on commit 586c0b3

Please sign in to comment.