@@ -73,10 +73,10 @@ jobs:
73
73
if [ "${{ matrix.os }}" == "ubuntu-22.04" ]; then
74
74
mkdir ${{ github.workspace }}/release-rpm
75
75
mkdir ${{ github.workspace }}/release-deb
76
- mv desktop/build/temp-*/binaries/haveno-*.rpm ${{ github.workspace }}/release-rpm/Haveno-x86_64.rpm
77
- mv desktop/build/temp-*/binaries/haveno_*.deb ${{ github.workspace }}/release-deb/Haveno-x86_64.deb
76
+ mv desktop/build/temp-*/binaries/haveno-*.rpm ${{ github.workspace }}/release-rpm/Haveno-${{ env.VERSION }}- x86_64.rpm
77
+ mv desktop/build/temp-*/binaries/haveno_*.deb ${{ github.workspace }}/release-deb/Haveno-${{ env.VERSION }}- x86_64.deb
78
78
else
79
- mv desktop/build/temp-*/binaries/Haveno-*.dmg ${{ github.workspace }}/release/Haveno-x86_64 .dmg
79
+ mv desktop/build/temp-*/binaries/Haveno-*.dmg ${{ github.workspace }}/release/Haveno-${{ env.VERSION }} .dmg
80
80
fi
81
81
cp desktop/build/temp-*/binaries/desktop-*.jar.SHA-256 ${{ github.workspace }}/release
82
82
cp desktop/build/temp-*/binaries/desktop-*.jar.SHA-256 ${{ github.workspace }}/release-deb
86
86
if : ${{ matrix.os == 'windows-latest' }}
87
87
run : |
88
88
mkdir ${{ github.workspace }}/release
89
- Move-Item -Path desktop\build\temp-*/binaries\Haveno-*.exe -Destination ${{ github.workspace }}/release/Haveno-x86_64 .exe
89
+ Move-Item -Path desktop\build\temp-*/binaries\Haveno-*.exe -Destination ${{ github.workspace }}/release/Haveno-${{ env.VERSION }} .exe
90
90
Move-Item -Path desktop\build\temp-*/binaries\desktop-*.jar.SHA-256 -Destination ${{ github.workspace }}/release
91
91
shell : powershell
92
92
@@ -95,25 +95,25 @@ jobs:
95
95
name : " Windows artifacts"
96
96
if : ${{ matrix.os == 'windows-latest'}}
97
97
with :
98
- name : haveno-${{ env.VERSION }}- windows
98
+ name : haveno-windows
99
99
path : ${{ github.workspace }}/release
100
100
# macos
101
101
- uses : actions/upload-artifact@v3
102
102
name : " macOS artifacts"
103
103
if : ${{ matrix.os == 'macos-13' }}
104
104
with :
105
- name : haveno-${{ env.VERSION }}- macos
105
+ name : haveno-macos
106
106
path : ${{ github.workspace }}/release
107
107
# linux
108
108
- uses : actions/upload-artifact@v3
109
109
name : " Linux - deb artifact"
110
110
if : ${{ matrix.os == 'ubuntu-22.04' }}
111
111
with :
112
- name : haveno-${{ env.VERSION }}- linux-deb
112
+ name : haveno-linux-deb
113
113
path : ${{ github.workspace }}/release-deb
114
114
- uses : actions/upload-artifact@v3
115
115
name : " Linux - rpm artifact"
116
116
if : ${{ matrix.os == 'ubuntu-22.04' }}
117
117
with :
118
- name : haveno-${{ env.VERSION }}- linux-rpm
118
+ name : haveno-linux-rpm
119
119
path : ${{ github.workspace }}/release-rpm
0 commit comments