-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (74 loc) · 2.48 KB
/
AI.yml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: AI
on:
# push:
# branches:
# - main
schedule:
- cron: "0 0 * * *"
jobs:
MaxKB:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Pull and Save Docker images
run: |
docker pull cr2.fit2cloud.com/1panel/maxkb
docker save -o maxkb.tar.gz cr2.fit2cloud.com/1panel/maxkb
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: maxkb
path: maxkb.tar.gz
onerahmet_openai-whisper-asr-webservice_latest:
runs-on: ubuntu-latest
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Pull and Save Image as File
run: |
docker pull onerahmet/openai-whisper-asr-webservice:latest
docker save -o onerahmet_openai-whisper-asr-webservice_latest.tar.gz onerahmet/openai-whisper-asr-webservice:latest
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: onerahmet_openai-whisper-asr-webservice_latest
path: onerahmet_openai-whisper-asr-webservice_latest.tar.gz
ollama:
runs-on: ubuntu-latest
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Pull and Save Image as File
run: |
docker pull ollama/ollama:0.5.7
docker save -o ollama_ollama_0.5.7.tar.gz ollama/ollama:0.5.7
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: ollama_ollama_0.5.7
path: ollama_ollama_0.5.7.tar.gz
open-webui:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Pull and Save Image as File
run: |
docker pull ghcr.io/open-webui/open-webui:main
docker save -o open-webui_main.tar.gz ghcr.io/open-webui/open-webui:main
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: open-webui_main
path: open-webui_main.tar.gz