Skip to content

Commit cc83ba5

Browse files
committed
move version from archive to installers
1 parent 75a3e0c commit cc83ba5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ jobs:
7373
if [ "${{ matrix.os }}" == "ubuntu-22.04" ]; then
7474
mkdir ${{ github.workspace }}/release-rpm
7575
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
7878
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
8080
fi
8181
cp desktop/build/temp-*/binaries/desktop-*.jar.SHA-256 ${{ github.workspace }}/release
8282
cp desktop/build/temp-*/binaries/desktop-*.jar.SHA-256 ${{ github.workspace }}/release-deb
@@ -86,7 +86,7 @@ jobs:
8686
if: ${{ matrix.os == 'windows-latest' }}
8787
run: |
8888
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
9090
Move-Item -Path desktop\build\temp-*/binaries\desktop-*.jar.SHA-256 -Destination ${{ github.workspace }}/release
9191
shell: powershell
9292

@@ -95,25 +95,25 @@ jobs:
9595
name: "Windows artifacts"
9696
if: ${{ matrix.os == 'windows-latest'}}
9797
with:
98-
name: haveno-${{ env.VERSION }}-windows
98+
name: haveno-windows
9999
path: ${{ github.workspace }}/release
100100
# macos
101101
- uses: actions/upload-artifact@v3
102102
name: "macOS artifacts"
103103
if: ${{ matrix.os == 'macos-13' }}
104104
with:
105-
name: haveno-${{ env.VERSION }}-macos
105+
name: haveno-macos
106106
path: ${{ github.workspace }}/release
107107
# linux
108108
- uses: actions/upload-artifact@v3
109109
name: "Linux - deb artifact"
110110
if: ${{ matrix.os == 'ubuntu-22.04' }}
111111
with:
112-
name: haveno-${{ env.VERSION }}-linux-deb
112+
name: haveno-linux-deb
113113
path: ${{ github.workspace }}/release-deb
114114
- uses: actions/upload-artifact@v3
115115
name: "Linux - rpm artifact"
116116
if: ${{ matrix.os == 'ubuntu-22.04' }}
117117
with:
118-
name: haveno-${{ env.VERSION }}-linux-rpm
118+
name: haveno-linux-rpm
119119
path: ${{ github.workspace }}/release-rpm

0 commit comments

Comments
 (0)