-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from learningequality/actions_speak_louder_than
Update Github actions to run non-redundantly and build an APK asset
- Loading branch information
Showing
3 changed files
with
75 additions
and
5 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,53 @@ | ||
name: Build APK for PRs | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
pre_job: | ||
name: Path match check | ||
runs-on: ubuntu-latest | ||
# Map a step output to a job output | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
github_token: ${{ github.token }} | ||
paths_ignore: '["**.po", "**.json"]' | ||
latest_kolibri_release: | ||
needs: pre_job | ||
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tar-url: ${{ steps.get_latest_kolibri_release.outputs.result }} | ||
steps: | ||
- name: Get latest Kolibri release | ||
id: get_latest_kolibri_release | ||
uses: actions/github-script@v7 | ||
with: | ||
result-encoding: string | ||
script: | | ||
const { data: releases } = await github.rest.repos.listReleases({ | ||
owner: 'learningequality', | ||
repo: 'kolibri', | ||
per_page: 1, | ||
page: 1, | ||
}); | ||
const latestRelease = releases[0]; | ||
const tarAsset = latestRelease.assets.find(asset => asset.name.endsWith('.tar.gz')); | ||
const tarUrl = tarAsset.browser_download_url; | ||
return tarUrl; | ||
build_apk: | ||
name: Build Debug APK | ||
needs: [pre_job, latest_kolibri_release] | ||
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | ||
uses: ./.github/workflows/build_apk.yml | ||
with: | ||
tar-url: ${{ needs.latest_kolibri_release.outputs.tar-url }} |
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