Skip to content

Commit

Permalink
feat(ci): store xz archives (leanprover-community#2719)
Browse files Browse the repository at this point in the history
  • Loading branch information
2 people authored and cipher1024 committed Mar 15, 2022
1 parent f542dc6 commit 595d71a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ jobs:
archive_name="$(git rev-parse HEAD).tar.gz"
tar czf "$archive_name" src
azcopy copy "$archive_name" "${{ secrets.AZURE_SAS_TOKEN }}" --block-size-mb 99 --overwrite false
archive_name="$(git rev-parse HEAD).tar.xz"
tar cJf "$archive_name" src
azcopy copy "$archive_name" "${{ secrets.AZURE_SAS_TOKEN }}" --block-size-mb 99 --overwrite false
- name: update lean-x.y.z branch
if: github.repository == 'leanprover-community/mathlib' && github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 595d71a

Please sign in to comment.