@@ -13,29 +13,29 @@ jobs:
13
13
uses : actions/download-artifact@v3
14
14
with :
15
15
name : windows-package
16
- path : win-pkg/
16
+ path : windows-package
17
17
- name : Download macOS x64 package
18
18
uses : actions/download-artifact@v3
19
19
with :
20
20
name : mac-package
21
- path : mac-pkg/
21
+ path : mac-package
22
22
- name : Download Linux x64 package
23
23
uses : actions/download-artifact@v3
24
24
with :
25
25
name : linux-package
26
- path : lnx-pkg/
26
+ path : linux-package
27
27
- name : Rename output files
28
28
run : |
29
- mv win-pkg/dmt.exe dmt-${{ github.ref_name }}-win-x64.exe
30
- mv mac-pkg/dmt dmt-${{ github.ref_name }}-mac-x64
31
- mv lnx-pkg/dmt dmt-${{ github.ref_name }}-linux-x64
29
+ mv windows-package dmt-${{ github.ref_name }}-win-x64.zip
30
+ mv mac-package dmt-${{ github.ref_name }}-mac-x64.zip
31
+ mv linux-package dmt-${{ github.ref_name }}-linux-x64.zip
32
32
- name : Create GitHub release
33
33
uses : softprops/action-gh-release@v1
34
34
with :
35
35
files : |
36
- dmt-${{ github.ref_name }}-win-x64.exe
37
- dmt-${{ github.ref_name }}-mac-x64
38
- dmt-${{ github.ref_name }}-linux-x64
36
+ dmt-${{ github.ref_name }}-win-x64.zip
37
+ dmt-${{ github.ref_name }}-mac-x64.zip
38
+ dmt-${{ github.ref_name }}-linux-x64.zip
39
39
build-package :
40
40
name : Build self-contained executables
41
41
runs-on : ubuntu-latest
@@ -46,21 +46,21 @@ jobs:
46
46
- name : Checkout source code
47
47
uses : actions/checkout@v3
48
48
- name : Execute Action build-with-plugins for Windows
49
- uses : ./actions/build-with-plugins
49
+ uses : ./.github/ actions/build-with-plugins
50
50
id : build-with-plugins-win
51
51
with :
52
52
platform : windows
53
53
platform-short : win
54
54
runtime : win-x64
55
55
- name : Execute Action build-with-plugins for MacOS
56
- uses : ./actions/build-with-plugins
56
+ uses : ./.github/ actions/build-with-plugins
57
57
id : build-with-plugins-mac
58
58
with :
59
59
platform : mac
60
60
platform-short : mac
61
61
runtime : osx-x64
62
62
- name : Execute Action build-with-plugins for Linux
63
- uses : ./actions/build-with-plugins
63
+ uses : ./.github/ actions/build-with-plugins
64
64
id : build-with-plugins-linux
65
65
with :
66
66
platform : linux
0 commit comments