CoolFace
Apppublic

timo1227/Toxic-Tweets

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
sync_to_huggingface_hub.yml21 linesDownload Raw Back to workflows
1name: Sync to Hugging Face hub2on:3  push:4    branches: [main]5 6  # to run this workflow manually from the Actions tab7  workflow_dispatch:8 9jobs:10  sync-to-hub:11    runs-on: ubuntu-latest12    steps:13      - uses: actions/checkout@v314        with:15          fetch-depth: 016          lfs: true17      - name: Push to hub18        env:19          HF_TOKEN: ${{ secrets.HF_TOKEN }}20        run: git push --force https://timo1227:$HF_TOKEN@huggingface.co/spaces/timo1227/Toxic-Tweets main21