-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
77 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Uploads an Android binary to the Google Play Store. | ||
name: Publish Android to Alpha (Internal Test) | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runId: | ||
type: string | ||
description: "The workflow whose build artifact to submit to the app store, as in https://github.com/BloomBooks/BloomReader-Lite/actions/runs/[runId]" | ||
required: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/publish.yml | ||
secrets: inherit | ||
with: | ||
runId: ${{ inputs.runId }} | ||
platform: android | ||
releaseChannel: alpha |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Uploads an Android binary to the Google Play Store. | ||
name: Publish Android to Beta (Open Test) [Draft] | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runId: | ||
type: string | ||
description: "The workflow whose build artifact to submit to the app store, as in https://github.com/BloomBooks/BloomReader-Lite/actions/runs/[runId]" | ||
required: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/publish.yml | ||
secrets: inherit | ||
with: | ||
runId: ${{ inputs.runId }} | ||
platform: android | ||
releaseChannel: beta |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Uploads an Android binary to the Google Play Store. | ||
name: Publish Android to Release (Production) [Draft] | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runId: | ||
type: string | ||
description: "The workflow whose build artifact to submit to the app store, as in https://github.com/BloomBooks/BloomReader-Lite/actions/runs/[runId]" | ||
required: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/publish.yml | ||
secrets: inherit | ||
with: | ||
runId: ${{ inputs.runId }} | ||
platform: android | ||
releaseChannel: release |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Uploads the iOS binaries to the Apple's AppStoreConnect. You need to do some manual work | ||
# on the AppStoreConnect website to have TestFlight start for it or to promote the build to a new release version | ||
name: Publish iOS to Beta | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runId: | ||
type: string | ||
description: "The workflow whose build artifacts to submit to the app store, as in https://github.com/BloomBooks/BloomReader-Lite/actions/runs/[runId]" | ||
required: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/publish.yml | ||
secrets: inherit | ||
with: | ||
runId: ${{ inputs.runId }} | ||
platform: ios | ||
releaseChannel: beta |