10
10
env :
11
11
GO_VERSION : 1.23.10
12
12
13
- msi-build :
14
- runs-on : ubuntu-24.04
15
- steps :
16
- - name : Check out the codebase.
17
- uses : actions/checkout@v4
18
- with :
19
- fetch-depth : 0
20
-
21
- - name : Downloading binaries-windows_amd64
22
- uses : actions/download-artifact@v4
23
- with :
24
- name : binaries-windows_amd64
25
- path : ./bin
26
-
27
- - name : Set up Go
28
- uses : actions/setup-go@v5
29
- with :
30
- go-version : ${{ env.GO_VERSION }}
31
- cache-dependency-path : ' **/go.sum'
32
-
33
- - name : Downloading agent-bundle-windows
34
- uses : actions/download-artifact@v4
35
- with :
36
- name : agent-bundle-windows-${{ inputs.OS }}
37
- path : ./dist
38
-
39
- - name : Downloading msi-custom-actions
40
- uses : actions/download-artifact@v4
41
- with :
42
- name : msi-custom-actions
43
- path : ./packaging/msi/SplunkCustomActions/bin/Release
44
-
45
- - name : Build MSI
46
- run : |
47
- mkdir -p dist
48
- make msi SKIP_COMPILE=true VERSION=""
49
-
50
- - name : Uploading msi build artifacts
51
- uses : actions/upload-artifact@v4
52
- with :
53
- name : msi-build-${{ inputs.OS }}
54
- path : ./dist/*.msi
13
+ jobs :
14
+ msi-build :
15
+ runs-on : ubuntu-24.04
16
+ steps :
17
+ - name : Check out the codebase.
18
+ uses : actions/checkout@v4
19
+ with :
20
+ fetch-depth : 0
21
+
22
+ - name : Downloading binaries-windows_amd64
23
+ uses : actions/download-artifact@v4
24
+ with :
25
+ name : binaries-windows_amd64
26
+ path : ./bin
27
+
28
+ - name : Set up Go
29
+ uses : actions/setup-go@v5
30
+ with :
31
+ go-version : ${{ env.GO_VERSION }}
32
+ cache-dependency-path : ' **/go.sum'
33
+
34
+ - name : Downloading agent-bundle-windows
35
+ uses : actions/download-artifact@v4
36
+ with :
37
+ name : agent-bundle-windows-${{ inputs.OS }}
38
+ path : ./dist
39
+
40
+ - name : Downloading msi-custom-actions
41
+ uses : actions/download-artifact@v4
42
+ with :
43
+ name : msi-custom-actions
44
+ path : ./packaging/msi/SplunkCustomActions/bin/Release
45
+
46
+ - name : Build MSI
47
+ run : |
48
+ mkdir -p dist
49
+ make msi SKIP_COMPILE=true VERSION=""
50
+
51
+ - name : Uploading msi build artifacts
52
+ uses : actions/upload-artifact@v4
53
+ with :
54
+ name : msi-build-${{ inputs.OS }}
55
+ path : ./dist/*.msi
0 commit comments