-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build on every push to core branches.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Kolibri Build Assets for Push | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- 'release-v**' | ||
|
||
jobs: | ||
whl: | ||
name: Build WHL file | ||
uses: ./.github/workflows/build_whl.yml | ||
pex: | ||
name: Build PEX file | ||
needs: whl | ||
uses: ./.github/workflows/build_pex.yml | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
dmg: | ||
name: Build DMG file | ||
needs: whl | ||
uses: learningequality/kolibri-app/.github/workflows/build_mac.yml@main | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
ref: main | ||
deb: | ||
name: Build DEB file | ||
needs: whl | ||
uses: learningequality/kolibri-installer-debian/.github/workflows/build_deb.yml@master | ||
with: | ||
tar-file-name: ${{ needs.whl.outputs.tar-file-name }} | ||
ref: master | ||
exe: | ||
name: Build EXE file | ||
needs: whl | ||
uses: learningequality/kolibri-installer-windows/.github/workflows/build_exe.yml@develop | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
ref: develop | ||
apk: | ||
name: Build APK file | ||
needs: whl | ||
uses: learningequality/kolibri-installer-android/.github/workflows/build_apk.yml@develop | ||
with: | ||
tar-file-name: ${{ needs.whl.outputs.tar-file-name }} | ||
ref: develop |