-
Notifications
You must be signed in to change notification settings - Fork 108
49 lines (49 loc) · 1.44 KB
/
yuukips.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
name: YuukiPS Alpine (4.0) (19) (Stable)
on:
push:
paths:
- "gs/os-loc-alpine-gc"
- "gs/ver_GSServer-GC-4.0"
- "gs/run.sh"
- "gs/entrypoint_gc.sh"
- ".github/workflows/yuukips.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync DockerGS
uses: actions/checkout@v3
- name: Sync YuukiPS
uses: actions/checkout@v3
with:
repository: YuukiPS/GSServer-GC
ref: "4.0"
token: ${{ secrets.HUB_TOKEN }}
path: gs/GSServer-GC
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: "17"
cache: "gradle"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: registry.gitlab.com
username: ${{secrets.DOCKER_USER_PRIVATE_GITLAB}}
password: ${{secrets.DOCKER_PASSWORD_PRIVATE_GITLAB}}
- name: Build Local Jar
run: cd gs && chmod +x run.sh && sh run.sh alpine build 19 docker_action pv
- name: Build Image Docker and Push
uses: docker/build-push-action@v3
with:
context: ./gs
file: ./gs/os-loc-alpine-gc
push: true
tags: |
${{ env.ver1 }}
${{ env.ver2 }}
cache-from: type=gha
cache-to: type=gha,mode=max