mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
fix(workflow): fix huggingface deploy errors and track .jpg file types
This commit is contained in:
parent
7f7b1b18cd
commit
2c2c2ea9e1
1 changed files with 4 additions and 0 deletions
4
.github/workflows/deploy-to-hf-spaces.yml
vendored
4
.github/workflows/deploy-to-hf-spaces.yml
vendored
|
|
@ -28,6 +28,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
|
||||||
- name: Remove git history
|
- name: Remove git history
|
||||||
run: rm -rf .git
|
run: rm -rf .git
|
||||||
|
|
@ -52,7 +54,9 @@ jobs:
|
||||||
- name: Set up Git and push to Space
|
- name: Set up Git and push to Space
|
||||||
run: |
|
run: |
|
||||||
git init --initial-branch=main
|
git init --initial-branch=main
|
||||||
|
git lfs install
|
||||||
git lfs track "*.ttf"
|
git lfs track "*.ttf"
|
||||||
|
git lfs track "*.jpg"
|
||||||
rm demo.gif
|
rm demo.gif
|
||||||
git add .
|
git add .
|
||||||
git commit -m "GitHub deploy: ${{ github.sha }}"
|
git commit -m "GitHub deploy: ${{ github.sha }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue