Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b3be51436 | |||
| 582496b048 | |||
| 982eeecabc | |||
| 04a8c95ad6 | |||
| 8fec5d9898 | |||
| 0785b5a571 |
34
.gitea/workflows/release.yml
Normal file
34
.gitea/workflows/release.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x
|
||||
|
||||
- name: Compile Windows exe
|
||||
run: |
|
||||
deno compile \
|
||||
--allow-net --allow-read --allow-write \
|
||||
--include desktop.html \
|
||||
--include mobile.html \
|
||||
--include obs.html \
|
||||
--target x86_64-pc-windows-msvc \
|
||||
--output elden-counter.exe \
|
||||
server.ts
|
||||
|
||||
- name: Publish release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: elden-counter.exe
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
@@ -1,13 +1,14 @@
|
||||
# Elden Ring Death Counter
|
||||
|
||||
Elden Ring-themed death counter with real-time multi-client sync over WebSocket. Runs as a self-contained local server — no install required.
|
||||
Written for Schmendrizzle's Twitch Stream.
|
||||
|
||||
## Pages
|
||||
|
||||
| URL | Description |
|
||||
|---|---|
|
||||
| `http://localhost:8080` | Desktop page with YOU DIED overlay and keyboard controls |
|
||||
| `http://<ip>:8080/mobile` | Touch-optimized control page for phone |
|
||||
| `http://<local-ip>:8080/mobile` | Touch-optimized control page for phone |
|
||||
| `http://localhost:8080/obs` | Transparent browser source for OBS |
|
||||
|
||||
## Run (dev)
|
||||
|
||||
Reference in New Issue
Block a user