File tree 1 file changed +0
-8
lines changed
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change 33
33
docker:
34
34
- 'Dockerfile'
35
35
- 'docker/**'
36
- iso:
37
- - 'baseline/**'
38
- - 'Makefile'
39
- - '!baseline/out/**' # Exclude output directory
40
36
41
37
- name : Output Changed Files
42
38
run : |
70
66
docker push ghcr.io/mcserverhosting-net/os:latest
71
67
72
68
- name : Build ISOs
73
- if : steps.changes.outputs.iso_changed == 'true' || github.event_name == 'schedule'
74
69
env :
75
70
K8S_VERSION : ${{ env.K8S_VERSION }}
76
71
ENABLE_NVIDIA : ${{ env.ENABLE_NVIDIA }}
@@ -86,18 +81,15 @@ jobs:
86
81
-c "cd /workspace && make clean && make K8S_VERSION=$K8S_VERSION ENABLE_NVIDIA=$ENABLE_NVIDIA ENABLE_AMD=$ENABLE_AMD"
87
82
88
83
- name : List generated ISOs
89
- if : steps.changes.outputs.iso_changed == 'true' || github.event_name == 'schedule'
90
84
run : ls -lh baseline/out/*.iso
91
85
92
86
- name : Upload ISO Artifacts
93
- if : steps.changes.outputs.iso_changed == 'true' || github.event_name == 'schedule'
94
87
uses : actions/upload-artifact@v3
95
88
with :
96
89
name : custom-archiso
97
90
path : baseline/out/*.iso
98
91
99
92
- name : Create GitHub Release
100
- if : steps.changes.outputs.iso_changed == 'true' || github.event_name == 'schedule'
101
93
uses : softprops/action-gh-release@v1
102
94
with :
103
95
tag_name : ' v${{ env.K8S_VERSION }}'
You can’t perform that action at this time.
0 commit comments