File tree 4 files changed +60
-0
lines changed
4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : YuukiPS Alpine (4.5) (21) (Broke)
2
+ on :
3
+ push :
4
+ paths : # TES2
5
+ - " gs/os-loc-alpine-gc"
6
+ - " gs/ver_GSServer-GC-4.5-broke"
7
+ - " gs/run.sh"
8
+ - " gs/entrypoint_gc.sh"
9
+ - " .github/workflows/yuukips45.yml"
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Sync DockerGS
15
+ uses : actions/checkout@v3
16
+ - name : Sync YuukiPS
17
+ uses : actions/checkout@v3
18
+ with :
19
+ repository : YuukiPS/GSServer-GC
20
+ ref : " 4.5-broke"
21
+ token : ${{ secrets.HUB_TOKEN }}
22
+ path : gs/GSServer-GC
23
+ - name : Setup Java
24
+ uses : actions/setup-java@v3
25
+ with :
26
+ distribution : temurin
27
+ java-version : " 17"
28
+ cache : " gradle"
29
+ - name : Set up Docker Buildx
30
+ uses : docker/setup-buildx-action@v2
31
+ - name : Login to Docker Hub
32
+ uses : docker/login-action@v2
33
+ with :
34
+ registry : registry.gitlab.com
35
+ username : ${{secrets.DOCKER_USER_PRIVATE_GITLAB}}
36
+ password : ${{secrets.DOCKER_PASSWORD_PRIVATE_GITLAB}}
37
+ - name : Build Local Jar
38
+ run : cd gs && chmod +x run.sh && sh run.sh alpine build 21 docker_action pv
39
+ - name : Build Image Docker and Push
40
+ uses : docker/build-push-action@v3
41
+ with :
42
+ context : ./gs
43
+ file : ./gs/os-loc-alpine-gc
44
+ push : true
45
+ tags : |
46
+ ${{ env.ver1 }}
47
+ ${{ env.ver2 }}
48
+ cache-from : type=gha
49
+ cache-to : type=gha,mode=max
Original file line number Diff line number Diff line change @@ -158,6 +158,9 @@ elif echo "$version" | grep -F -w "3.8"; then
158
158
elif echo " $version " | grep -F -w " 4.0" ; then
159
159
version_res=" 4.0"
160
160
resmd5=" 99c6662090d83386d5e81592139cf075"
161
+ elif echo " $version " | grep -F -w " 4.5" ; then
162
+ version_res=" 4.6" # jump (too lazy to re-fix res 4.5)
163
+ # resmd5=""
161
164
fi
162
165
163
166
echo " Runs with OS $OSVS "
Original file line number Diff line number Diff line change @@ -47,6 +47,13 @@ if [ "$2" != "version_action" ]; then
47
47
elif [ " $versioncontrol " = " 20" ]; then # for public (dev)
48
48
useBranchesProject=" 4.0"
49
49
useBranchesRes=" 4.0"
50
+ elif [ " $versioncontrol " = " 21" ]; then
51
+ mainProject=" yuukigc"
52
+ useBranchesProject=" 4.5-broke"
53
+ useBranchesRes=" 4.6"
54
+ useShortProject=" yuukips"
55
+ useProject=" GSServer-GC"
56
+ userHub=" registry.gitlab.com/yuukips"
50
57
fi
51
58
52
59
fi
Original file line number Diff line number Diff line change
1
+ 082e762
You can’t perform that action at this time.
0 commit comments