Skip to content

Commit b491b92

Browse files
committed
added:more release system release support
1 parent 4b7c612 commit b491b92

File tree

5 files changed

+33
-6
lines changed

5 files changed

+33
-6
lines changed

.github/workflows/RockyArm64_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: rocky Arm64 build workflows
33
on:
44
push:
55
branches:
6-
- 'develop1'
6+
- 'develop'
77
paths:
88
- 'XEngine_Source/**'
99
- 'XEngine_Release/**'

.github/workflows/UbuntuArm64_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ubuntu Arm64 build workflows
33
on:
44
push:
55
branches:
6-
- 'develop1'
6+
- 'develop'
77
paths:
88
- 'XEngine_Source/**'
99
- 'XEngine_Release/**'

.github/workflows/macbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: macos build workflows
33
on:
44
push:
55
branches:
6-
- 'develop1'
6+
- 'develop'
77
paths:
88
- 'XEngine_Source/**'
99
- 'XEngine_Release/**'

.github/workflows/msbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: windows build workflows
33
on:
44
push:
55
branches:
6-
- 'develop1'
6+
- 'develop'
77
paths:
88
- 'XEngine_Source/**'
99
- 'XEngine_Release/**'

.github/workflows/release.yml

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,42 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- name: Download ubuntubuild
19+
- name: Download ubuntu x86_64 build
2020
uses: dawidd6/action-download-artifact@v6
2121
with:
22-
workflow: ubuntubuild.yml
22+
workflow: Ubuntux86_64_build.yml
2323
workflow_conclusion: success
2424
check_artifacts: false
2525
skip_unpack: true
2626
if_no_artifact_found: fail
2727
path: ./XRelease/
28+
- name: Download ubuntu Arm64 build
29+
uses: dawidd6/action-download-artifact@v6
30+
with:
31+
workflow: UbuntuArm64_build.yml
32+
workflow_conclusion: success
33+
check_artifacts: false
34+
skip_unpack: true
35+
if_no_artifact_found: fail
36+
path: ./XRelease/
37+
- name: Download rocky x86_64 build
38+
uses: dawidd6/action-download-artifact@v6
39+
with:
40+
workflow: RockyX86_64_build.yml
41+
workflow_conclusion: success
42+
check_artifacts: false
43+
skip_unpack: true
44+
if_no_artifact_found: fail
45+
path: ./XRelease/
46+
- name: Download rocky Arm64 build
47+
uses: dawidd6/action-download-artifact@v6
48+
with:
49+
workflow: RockyArm64_build.yml
50+
workflow_conclusion: success
51+
check_artifacts: false
52+
skip_unpack: true
53+
if_no_artifact_found: fail
54+
path: ./XRelease/
2855
- name: Download macbuild
2956
uses: dawidd6/action-download-artifact@v6
3057
with:

0 commit comments

Comments
 (0)