Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Trying to fix sed on linux #7

Trying to fix sed on linux

Trying to fix sed on linux #7

Workflow file for this run

name: Build App
on:
push:
branches:
- main # Change this to your main branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm ci # Adjust this based on your project's dependencies
- name: Install Frontend Dependencies
run: cd svelte && npm ci # Adjust this based on your project's dependencies
- name: Build for Mac
run: ./build mac
- name: Build for Linux
run: ./build linux
- name: Build for Windows
run: ./build win
- name: Archive Artifacts
uses: actions/upload-artifact@v2
with:
name: builds
path: |
dist/mac_*
dist/linux_*
dist/win_*