Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
- cron: '0 3 * * *'
push:
branches:
- june-29
- windows
# Allow manual triggering
workflow_dispatch:

jobs:
generate-version:
runs-on: blacksmith-4vcpu-ubuntu-2204
runs-on: ubuntu-latest
outputs:
beta_version: ${{ steps.set-version.outputs.beta_version }}
steps:
Expand All @@ -33,7 +33,7 @@ jobs:

conveyor-beta-build:
name: Build Beta macOS App
runs-on: blacksmith-4vcpu-ubuntu-2204
runs-on: ubuntu-latest
needs: [generate-version]
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
runs-on: blacksmith-4vcpu-ubuntu-2204
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
create-release:
name: Create Release for Version
runs-on: blacksmith-4vcpu-ubuntu-2204
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<tr>
<td width="50%">
<img src=".screenshots/game.png" alt="Game Integration" width="100%" />
<p align="center"><em>Game Integration</em></p>
<p align="center"><em>Game Mode</em></p>
</td>
<td width="50%">
<img src=".screenshots/mcp.png" alt="MCP Integration" width="100%" />
Expand Down Expand Up @@ -131,7 +131,7 @@ Slide Code is a intuitive desktop application that ideally makes it a bit easier
- **ccusage**: Claude Code usage tracking
- **Claude Code SDK**: Official SDK for Claude Code integration

### **Game Server** (`/game`)
### **Game** (`/game`)

- **Go**: High-performance backend language
- **Templ**: Type-safe HTML templating
Expand Down Expand Up @@ -216,7 +216,7 @@ npm run studio # Open Drizzle Studio

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

## 🌟 Support

Expand Down
3 changes: 3 additions & 0 deletions conveyor.beta.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@ app {
# Beta-specific settings
icons = "_icons/slide-code-beta-logo.png"
vcs-url = "github.com/longtail-labs/slide.code.releases.beta"

# Override Windows version quad to ensure valid format
windows.manifests.version-quad = "0.0.1.0"
}
conveyor.compatibility-level = 18.1
4 changes: 2 additions & 2 deletions conveyor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ app {
]

// Explicitly focus on Mac for this workflow
# machines = [mac.amd64, mac.aarch64]
machines = [mac.aarch64]
machines = [mac.amd64, mac.aarch64, windows.amd64]
# machines = [mac.aarch64]
}

// Set compression level to high to maximize build size reduction
Expand Down
Loading