Spaces:
Running
Running
File size: 1,337 Bytes
47d3b3a 00c1445 47d3b3a 00c1445 22d7b97 00c1445 526684e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
name: Deploy to production
on:
release:
types: [released]
# to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
update-env:
name: "Update production environment config"
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.11 #install the python needed
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
pip install huggingface_hub
- name: Update .env.local # run file
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
SECRET_CONFIG: ${{ secrets.SECRET_CONFIG }}
run: |
python update_env.py
sync-to-hub:
runs-on: ubuntu-latest
steps:
- name: Check large files
uses: ActionsDesk/lfs-warning@v2.0
with:
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Push to hub
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: git push https://nsarrazin:$HF_TOKEN@huggingface.co/spaces/huggingchat/chat-ui main
|