-
Notifications
You must be signed in to change notification settings - Fork 721
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 #12050 from rtibbles/release_upload
Release upload fixes
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -34,10 +34,10 @@ jobs: | |
dmg: | ||
name: Build DMG file | ||
needs: whl | ||
uses: learningequality/kolibri-app/.github/workflows/build_mac.yml@main | ||
uses: learningequality/kolibri-app/.github/workflows/build_mac.yml@v0.4.0 | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
ref: main | ||
ref: v0.4.0 | ||
deb: | ||
name: Build DEB file | ||
needs: whl | ||
|
@@ -48,10 +48,10 @@ jobs: | |
exe: | ||
name: Build EXE file | ||
needs: whl | ||
uses: learningequality/kolibri-installer-windows/.github/workflows/[email protected].0 | ||
uses: learningequality/kolibri-installer-windows/.github/workflows/[email protected].1 | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
ref: v1.6.0 | ||
ref: v1.6.1 | ||
apk: | ||
name: Build APK file | ||
needs: whl | ||
|
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 |
---|---|---|
|
@@ -69,11 +69,11 @@ jobs: | |
exe: | ||
name: Build EXE file | ||
needs: whl | ||
uses: learningequality/kolibri-installer-windows/.github/workflows/[email protected].0 | ||
uses: learningequality/kolibri-installer-windows/.github/workflows/[email protected].1 | ||
with: | ||
whl-file-name: ${{ needs.whl.outputs.whl-file-name }} | ||
release: true | ||
ref: v1.6.0 | ||
ref: v1.6.1 | ||
secrets: | ||
KOLIBRI_WINDOWS_INSTALLER_CERTIFICATE: ${{ secrets.KOLIBRI_WINDOWS_INSTALLER_CERTIFICATE }} | ||
KOLIBRI_WINDOWS_INSTALLER_CERTIFICATE_PASSWORD: ${{ secrets.KOLIBRI_WINDOWS_INSTALLER_CERTIFICATE_PASSWORD }} | ||
|
@@ -86,10 +86,10 @@ jobs: | |
zip: | ||
name: Build Raspberry Pi Image | ||
needs: deb | ||
uses: learningequality/pi-gen/.github/workflows/[email protected].0 | ||
uses: learningequality/pi-gen/.github/workflows/[email protected].1 | ||
with: | ||
deb-file-name: ${{ needs.deb.outputs.deb-file-name }} | ||
ref: v0.16.0 | ||
ref: v0.16.1 | ||
upload_zip: | ||
uses: ./.github/workflows/upload_github_release_asset.yml | ||
needs: zip | ||
|
@@ -184,13 +184,13 @@ jobs: | |
- name: Upload files to Google Cloud Storage | ||
uses: 'google-github-actions/upload-cloud-storage@v2' | ||
with: | ||
path: 'dist/${{ matrix.filename }}' | ||
path: 'dist/${{ matrix.filename }}/${{ matrix.filename }}' | ||
destination: '${{ secrets.KOLIBRI_PUBLIC_RELEASE_GCS_BUCKET }}/downloads/kolibri/${{ github.event.release.name }}/${{ matrix.filename }}' | ||
- name: Upload to BCK bucket | ||
if: ${{ github.event.release.name == 'latest' }} && ${{ endsWith(matrix.filename, '.whl') }} | ||
uses: 'google-github-actions/upload-cloud-storage@v2' | ||
with: | ||
path: 'dist/${{ matrix.filename }}' | ||
path: 'dist/${{ matrix.filename }}/${{ matrix.filename }}' | ||
destination: '${{ secrets.BCK_PROD_BUILD_ARTIFACT_GCS_BUCKET }}/${{ matrix.filename }}' | ||
android_release: | ||
name: Release Android App | ||
|