Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release_build_infisical_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,14 @@ jobs:
chmod 600 /tmp/infisical-apk.rsa
env:
APK_PRIVATE_KEY: ${{ secrets.APK_PRIVATE_KEY }}
# upload_to_s3.sh syncs the whole apk repo down before rebuilding the index, and
# that repo holds the full backfilled history.
- name: Free disk space before publish
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
run: |
df -h /
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL || true
df -h /
- name: Publish packages to repositories
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
run: bash upload_to_s3.sh
Expand Down
Loading