mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 03:29:23 +00:00
Rename workflows
This commit is contained in:
parent
974ae2df22
commit
cdbda9c754
7 changed files with 14 additions and 77 deletions
|
@ -1,5 +1,5 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
name: 'MacOS 12 - x64 DMG Build'
|
||||
name: 'MacOS - x64 DMG Build'
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
|
@ -25,7 +25,7 @@ jobs:
|
|||
node-version: [20]
|
||||
|
||||
# The type of runner that the job will run on
|
||||
runs-on: macos-12
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
@ -57,6 +57,6 @@ jobs:
|
|||
- name: Upload DMG artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: monerod-gui-darwin12-installer-dmg
|
||||
name: monerod-gui-darwin-installer-dmg
|
||||
path: dist/installers/*.dmg
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
name: 'Ubuntu 22.04 - AppImage Build'
|
||||
name: 'Linux - AppImage Build'
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
node-version: [20]
|
||||
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
@ -59,5 +59,5 @@ jobs:
|
|||
- name: Upload AppImage artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: monerod-gui-ubuntu-22-portable
|
||||
name: monerod-gui-linux-appimage
|
||||
path: release/*.AppImage
|
|
@ -1,5 +1,5 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
name: 'RedHat - x86_64 RPM Build'
|
||||
name: 'Linux - x86_64 RPM Build'
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
node-version: [20]
|
||||
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
|
@ -1,5 +1,5 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
name: 'Ubuntu 24.04 - x64 DEB Build'
|
||||
name: 'Linux - x64 DEB Build'
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
node-version: [20]
|
||||
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
@ -59,5 +59,5 @@ jobs:
|
|||
- name: Upload DEB artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: monerod-gui-ubuntu-24-installer
|
||||
name: monerod-gui-linux-installer-deb
|
||||
path: dist/installers/*.deb
|
63
.github/workflows/ubuntu_22_deb.yml
vendored
63
.github/workflows/ubuntu_22_deb.yml
vendored
|
@ -1,63 +0,0 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
name: 'Ubuntu 22.04 - x64 DEB Build'
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
# Triggers the workflow on push or pull request events but only for the main branch
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [20]
|
||||
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Install linux dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf fakeroot dpkg
|
||||
|
||||
- name: Install Dependencies
|
||||
run: npm i
|
||||
|
||||
- name: Build the app
|
||||
run: npm run electron:build:deb
|
||||
|
||||
- name: Upload DEB artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: monerod-gui-ubuntu-22-installer
|
||||
path: dist/installers/*.deb
|
|
@ -1 +1 @@
|
|||
18
|
||||
20
|
||||
|
|
|
@ -86,10 +86,10 @@ https://github.com/user-attachments/assets/c4a50d2f-5bbb-48ac-9425-30ecc20ada7c
|
|||
- [X] MacOS
|
||||
- [X] Import/export `monerod.conf` node configuration
|
||||
- [X] Synchronization in a specific time slot
|
||||
- [ ] Installers
|
||||
- [X] Installers
|
||||
- [X] Linux
|
||||
- [X] Windows
|
||||
- [ ] MacOS
|
||||
- [X] MacOS
|
||||
- [ ] Remote node management
|
||||
- [ ] No CORS connection
|
||||
|
||||
|
|
Loading…
Reference in a new issue