mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 11:39:25 +00:00
Upload build test artifacts
This commit is contained in:
parent
954c97d3f6
commit
14b8bb5dc1
5 changed files with 31 additions and 2 deletions
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -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
|
||||||
|
|
6
.github/workflows/ubuntu_22_appimage.yml
vendored
6
.github/workflows/ubuntu_22_appimage.yml
vendored
|
@ -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
|
||||||
|
|
6
.github/workflows/ubuntu_22_deb.yml
vendored
6
.github/workflows/ubuntu_22_deb.yml
vendored
|
@ -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
|
||||||
|
|
5
.github/workflows/ubuntu_24_deb.yml
vendored
5
.github/workflows/ubuntu_24_deb.yml
vendored
|
@ -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
|
||||||
|
|
12
.github/workflows/windows.yml
vendored
12
.github/workflows/windows.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue