Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
pukmajster committed Oct 16, 2024
1 parent 4fb1504 commit 2991bad
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
61 changes: 61 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Shoutout to https://github.com/marketplace/actions/electron-builder-action

name: Build and release

on:
push:
branches:
- main
tags:
- v*

jobs:
build-windows:
name: Build Windows binaries
runs-on: windows-latest
environment: production
timeout-minutes: 80

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.4.1'
- name: Update NPM
run: |
npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:win
shell: pwsh
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: exe
path: ./dist/funky.setup.*.exe

build-linux:
name: Build Linux binaries
runs-on: ubuntu-latest
environment: production
timeout-minutes: 80

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.4.1'
- name: Update NPM
run: |
npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:win
shell: pwsh
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: exe
path: ./dist/funky.*.AppImage
2 changes: 1 addition & 1 deletion src/renderer/src/features/setup/WelcomeGuide.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</span>
</p>

<SteamGamesDirectoryManager bind:lockStep hideSteamStorageButton />
<SteamGamesDirectoryManager hideSteamStorageButton />
</div>
</Step>

Expand Down

0 comments on commit 2991bad

Please sign in to comment.