Skip to content

Commit

Permalink
Merge pull request #20 from ArweaveTeam/experiment/headless
Browse files Browse the repository at this point in the history
feat: headless standalone nextjs app
  • Loading branch information
hlolli authored Nov 30, 2023
2 parents 0599417 + f7108f1 commit e699e77
Show file tree
Hide file tree
Showing 10 changed files with 597 additions and 341 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
app
app
renderer/dist*
38 changes: 38 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Make ArweaveMinerUi Release

on:
workflow_dispatch:
inputs:
version:
description: "Version to release"
required: true

jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v4

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@master
with:
node-version: 20

- name: Build/release Electron app
id: create_electron_release
uses: samuelmeuli/action-electron-builder@v1.6.0
with:
github_token: ${{ secrets.github_token }}
release: ${{ github.event.inputs.version}}
- name: Create headless release artifact
if: matrix.os == 'ubuntu-latest'
id: create_headless_release
run: |
npm run build:headless
zip -r dist-headless.zip ./renderer/dist-headless
Loading

0 comments on commit e699e77

Please sign in to comment.