File tree Expand file tree Collapse file tree 5 files changed +31
-7
lines changed Expand file tree Collapse file tree 5 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 19
19
matrix : ${{ steps.set-matrix.outputs.matrix }}
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Generate python
25
25
uses : actions/setup-python@v4
31
31
run : ./generate-dockerfiles.sh
32
32
33
33
- name : Upload a Build Artifact
34
-
34
+
35
35
with :
36
36
# Artifact name
37
37
name : Dockerfiles
55
55
runs-on : ubuntu-latest
56
56
steps :
57
57
- name : Checkout
58
- uses : actions/checkout@v3
58
+ uses : actions/checkout@v4
59
59
60
60
- name : Setup python
61
61
uses : actions/setup-python@v4
86
86
max-wait-time : 30
87
87
88
88
- name : Checkout
89
- uses : actions/checkout@v3
89
+ uses : actions/checkout@v4
90
90
91
91
- name : Remove old Dockerfiles
92
92
run : rm -rf dockerfiles
@@ -118,7 +118,7 @@ jobs:
118
118
username : ${{ github.actor }}
119
119
password : ${{ secrets.GITHUB_TOKEN }}
120
120
- name : Build and push
121
- uses : docker/build-push-action@v4.1 .1
121
+ uses : docker/build-push-action@v4.2 .1
122
122
with :
123
123
context : .
124
124
file : dockerfiles/Dockerfile.${{ matrix.shortname }}
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Docker Hub Description
18
18
uses : peter-evans/dockerhub-description@v3
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
fetch-depth : 0
15
15
- name : Action Update License Year
Original file line number Diff line number Diff line change
1
+ version : " 3.8"
2
+ services :
3
+ # bind mount example
4
+ linuxgsm-ps-bind :
5
+ image : gameservermanagers/gameserver:ps
6
+ # image: ghcr.io/gameservermanagers/gameserver:ps
7
+ container_name : psserver
8
+ restart : unless-stopped
9
+ volumes :
10
+ - /path/to/linuxgsm/psserver:/data
11
+ ports :
12
+
13
+ # volume example
14
+ linuxgsm-ps-volume :
15
+ image : gameservermanagers/gameserver:ps
16
+ # image: ghcr.io/gameservermanagers/gameserver:ps
17
+ container_name : psserver
18
+ restart : unless-stopped
19
+ volumes :
20
+ - linuxgsm-ps:/data
21
+ ports :
22
+
23
+ volumes :
24
+ linuxgsm-ps :
You can’t perform that action at this time.
0 commit comments