Spaces:
Paused
Paused
Commit
·
8e48c07
1
Parent(s):
bbd69d1
Update .github/workflows/deploy-to-hf-spaces.yml
Browse files
.github/workflows/deploy-to-hf-spaces.yml
CHANGED
@@ -34,17 +34,21 @@ jobs:
|
|
34 |
|
35 |
- name: Prepend YAML front matter to README.md
|
36 |
run: |
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
48 |
- name: Configure git
|
49 |
run: |
|
50 |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
34 |
|
35 |
- name: Prepend YAML front matter to README.md
|
36 |
run: |
|
37 |
+
cat <<EOF >README.md
|
38 |
+
---
|
39 |
+
title: Open WebUI
|
40 |
+
emoji: 🐳
|
41 |
+
colorFrom: purple
|
42 |
+
colorTo: gray
|
43 |
+
sdk: docker
|
44 |
+
app_port: 8080
|
45 |
+
hf_oauth: true
|
46 |
+
hf_oauth_scopes:
|
47 |
+
- email
|
48 |
+
---
|
49 |
+
$(cat README.md)
|
50 |
+
EOF
|
51 |
+
|
52 |
- name: Configure git
|
53 |
run: |
|
54 |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|