Skip to content

Commit

Permalink
Merge pull request #12201 from rtibbles/really_bck_for_realz
Browse files Browse the repository at this point in the history
Zip the whl file before uploading for BCK step.
  • Loading branch information
rtibbles authored May 23, 2024
2 parents 9027de7 + 5194748 commit 095c5b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release_kolibri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ jobs:
with:
name: ${{ needs.whl.outputs.whl-file-name }}
path: dist
- name: Zip whl file
run: zip -j dist/kolibri.zip dist/${{ needs.whl.outputs.whl-file-name }}
- uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GH_UPLOADER_GCP_SA_CREDENTIALS }}'
Expand All @@ -204,8 +206,9 @@ jobs:
- name: Upload to BCK bucket
uses: 'google-github-actions/upload-cloud-storage@v2'
with:
path: 'dist/${{ needs.whl.outputs.whl-file-name }}'
path: 'dist/kolibri.zip'
destination: '${{ secrets.BCK_PROD_BUILD_ARTIFACT_GCS_BUCKET }}'
parent: false
android_release:
name: Release Android App
if: ${{ !github.event.release.prerelease }}
Expand Down

0 comments on commit 095c5b4

Please sign in to comment.