Skip to content

Add Gemini CLI install instructions to README #17

Add Gemini CLI install instructions to README

Add Gemini CLI install instructions to README #17

Workflow file for this run

name: Mirror to HuggingFace
on:
push:
branches:
- main
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Push to HuggingFace
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
mkdir -p /tmp/hf-push
cp README.md SKILL.md LICENSE /tmp/hf-push/ 2>/dev/null || true
cd /tmp/hf-push
git init -b main
git config user.name "ilang-ai"
git config user.email "ilang-ai@users.noreply.github.com"
git add -A
git commit -m "Sync from GitHub"
git remote add hf https://i-Lang:${HF_TOKEN}@huggingface.co/datasets/i-Lang/Imprint
git push hf main --force