Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
microhum authored Jun 1, 2024
1 parent 71a87ec commit 8359aab
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Sync to Hugging Face hub
on:
push:
branches: [main]

# to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
sync-to-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Add remote
env:
HF: ${{ secrets.HF_TOKEN }}
run: git remote add space https://microhum:[email protected]/spaces/microhum/ThaiVecFont
- name: Push to hub
env:
HF: ${{ secrets.HF_TOKEN }}
run: git push --force https://microhum:[email protected]/spaces/microhum/ThaiVecFont

0 comments on commit 8359aab

Please sign in to comment.