Upload build test artifacts

This commit is contained in:
argenius 2024-11-07 20:16:47 +01:00
parent 954c97d3f6
commit 14b8bb5dc1
5 changed files with 31 additions and 2 deletions

View file

@ -57,11 +57,11 @@ jobs:
- name: Upload DMG artifact - name: Upload DMG artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: monerod-gui-darwin12.dmg name: monerod-gui-darwin12-dmg.zip
path: release/*.dmg path: release/*.dmg
- name: Upload PKG artifact - name: Upload PKG artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: monerod-gui-darwin12.pkg name: monerod-gui-darwin12-pkg.zip
path: release/*.pkg path: release/*.pkg

View file

@ -55,3 +55,9 @@ jobs:
- name: Build the app - name: Build the app
run: npm run electron:build run: npm run electron:build
- name: Upload AppImage artifact
uses: actions/upload-artifact@v4
with:
name: monerod-gui-ubuntu-22-portable.zip
path: release/*.AppImage

View file

@ -55,3 +55,9 @@ jobs:
- name: Build the app - name: Build the app
run: npm run electron:build:deb run: npm run electron:build:deb
- name: Upload DEB artifact
uses: actions/upload-artifact@v4
with:
name: monerod-gui-ubuntu-22-installer.zip
path: release/*.deb

View file

@ -56,3 +56,8 @@ jobs:
- name: Build the app - name: Build the app
run: npm run electron:build:deb run: npm run electron:build:deb
- name: Upload DEB artifact
uses: actions/upload-artifact@v4
with:
name: monerod-gui-ubuntu-24-installer.zip
path: release/*.deb

View file

@ -53,3 +53,15 @@ jobs:
- name: Build the app - name: Build the app
run: npm run electron:build run: npm run electron:build
- name: Upload EXE artifact
uses: actions/upload-artifact@v4
with:
name: monerod-gui-windows-portable.zip
path: release/*.exe
- name: Upload MSI artifact
uses: actions/upload-artifact@v4
with:
name: monerod-gui-windows-installer.zip
path: release/*.msi