ci: run yarn install + update electron entrypoint #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build appimage | |
on: [push] | |
jobs: | |
coderibbon-theia-appimage: | |
name: Build CodeRibbon-Theia appimage | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
- run: yarn install | |
- run: yarn electron build | |
- run: yarn electron package | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: applications/electron/dist/*.AppImage | |
name: coderibbon-electron-appimage |