chore: add install lfs #372
Workflow file for this run
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
# Sync repos | |
name: Sync repos | |
on: | |
push: | |
# branches: | |
# - 'main' | |
workflow_dispatch: | |
jobs: | |
sync-repo: | |
if: ${{ github.repository == 'zama-ai/concrete-ml' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install LFS | |
run: | | |
TZ=Europe/Paris | |
echo "TZ=${TZ}" >> "$GITHUB_ENV" | |
ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone | |
sed -i 's|^deb http://archive|deb http://fr.archive|g' /etc/apt/sources.list | |
apt update && apt install git git-lfs -y | |
- name: Checkout repo | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Save repo | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
with: | |
name: repo-archive | |
path: '.' | |
# - name: git-sync | |
# uses: RomanBredehoft/git-sync@c3a834b8f207d9273466a7e6335593f3d5b4214a | |
# with: | |
# source_repo: "zama-ai/concrete-ml" | |
# source_branch: "main" | |
# destination_repo: "https://${{ secrets.BOT_USERNAME }}:${{ secrets.CONCRETE_ACTIONS_TOKEN }}@github.com/${{ secrets.SYNC_DEST_REPO }}" | |
# destination_branch: "main" | |
# push_lfs_all: true | |
- name: git-sync | |
uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 | |
with: | |
source_repo: "zama-ai/concrete-ml" | |
source_branch: "main" | |
destination_repo: "https://${{ secrets.BOT_USERNAME }}:${{ secrets.CONCRETE_ACTIONS_TOKEN }}@github.com/${{ secrets.SYNC_DEST_REPO }}" | |
destination_branch: "main" | |
# - name: Sync private repository | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.CONCRETE_ACTIONS_TOKEN }} | |
# repository: ${{ secrets.SYNC_DEST_REPO }} | |
# force: true |