-
Notifications
You must be signed in to change notification settings - Fork 16
93 lines (77 loc) · 2.73 KB
/
text-generation-webui-build.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
name: Build Text Generation WebUI Solution
on:
workflow_dispatch:
inputs:
target:
description: 'Target'
required: true
default: ''
type: choice
options:
- develop
- stage
- testnet
env:
IMAGE_FILE: ''
IMAGE_RESOURCE: ''
SOLUTION: text-generation-webui
PR_REPO_ARGO: super-protocol/argocd-clusters
DOCKERFILE: "Text\ Generation\ WebUI/Dockerfile"
DOCKER_CONTEXT: "./Text\ Generation\ WebUI/"
TARGET: ${{ inputs.target }}
jobs:
build-text-genration-webui:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
repository-projects: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout git submodules
run: |
git submodule init && git submodule update
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
driver-opts: |
image=moby/buildkit:v0.12.0
- name: Build Docker image and save to file
run: |
IMAGE_FILE="$SOLUTION-image-$TARGET-b${{ github.run_id }}"
docker build -t $SOLUTION:latest -f $DOCKERFILE $DOCKER_CONTEXT
docker save $SOLUTION:latest | gzip > $IMAGE_FILE.tar.gz
echo "IMAGE_FILE=$IMAGE_FILE" >> $GITHUB_ENV
- name: Set SPCTL repository type
run: |
if [ "$TARGET" == "develop" || "$TARGET" == "stage" ]; then
SPCTL_REPOSITORY_TYPE=private
else
SPCTL_REPOSITORY_TYPE=public
fi
echo "SPCTL_REPOSITORY_TYPE=$SPCTL_REPOSITORY_TYPE" >> $GITHUB_ENV
- name: Download and install SPCTL
uses: Super-Protocol/sp-build-tools/actions/download-spctl@main
with:
version: latest
repository: ${{ env.SPCTL_REPOSITORY_TYPE }}
gh_token: ${{ secrets.GHFG_TOKEN_SPCTL_RELEASES_DOWNLOAD }}
- name: Prepare SPCTL config
run: |
if [ "$TARGET" == "develop" ]; then
SPCTL_CONFIG="${{ secrets.DEVELOP_OFFERS_SPCTL_CONFIG_BASE64 }}"
if [ "$TARGET" == "stage" ]; then
SPCTL_CONFIG="${{ secrets.STAGING_OFFERS_SPCTL_CONFIG_BASE64 }}"
elif [ "$TARGET" == "testnet" ]; then
SPCTL_CONFIG="${{ secrets.TESTNET_OFFERS_SPCTL_CONFIG_BASE64 }}"
fi
echo "$SPCTL_CONFIG" | base64 --decode > ./config.json
./spctl --version
- name: Encrypt and upload image
id: upload_image
run: |
./spctl files upload $IMAGE_FILE.tar.gz --output $IMAGE_FILE.json --filename $IMAGE_FILE.tar.gz
cat $IMAGE_FILE.json
echo "IMAGE_RESOURCE=$IMAGE_FILE.json" >> $GITHUB_ENV