Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Add sync to huggyng face space
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-victor committed Jul 15, 2023
1 parent e72b5ba commit ec26047
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-file-size.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check file size
on:
pull_request:
branches: [main]

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

jobs:
sync-to-hub:
runs-on: ubuntu-latest
steps:
- name: Check large files
uses: ActionsDesk/[email protected]
with:
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
31 changes: 31 additions & 0 deletions .github/workflows/sync-to-huggingface.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Sync to Hugging Face hub
on:
push:
branches: [huggingface-space]

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

jobs:
sync-to-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Update config.json
run: |
sudo apt-get install -y jq
jq '.site_config.port = 7860' config.json > config.tmp && mv config.tmp config.json
- name: Push to hub
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
echo "---" > README.md
echo "$(cat space_config.yml)" >> README.md
echo "---" >> README.md
git add README.md
git add config.json
git commit -m "Update README and config.json"
git push https://monra:[email protected]/spaces/monra/freegpt-webui main
8 changes: 8 additions & 0 deletions space_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title: FreeGPT WebUI
emoji: 🚀
colorFrom: blue
colorTo: yellow
sdk: docker
sdk_version: 1.24.0
app_file: run.py
pinned: true

0 comments on commit ec26047

Please sign in to comment.