diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml
new file mode 100644
index 0000000..cc1df11
--- /dev/null
+++ b/.forgejo/workflows/build.yml
@@ -0,0 +1,31 @@
+name: Build
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ build:
+ runs-on: macos
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Setup Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: 1.24
+ - name: Installing Wails
+ run: |
+ go install github.com/wailsapp/wails/v2/cmd/wails@latest
+ - name: Running Wails doctor
+ run: |
+ wails doctor
+ - name: Build
+ run: |
+ wails build -platform darwin/arm64 -o Dequoter.app
+ - name: Upload build artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: dequoter-darwin-arm64
+ path: build/bin/
diff --git a/frontend/index.html b/frontend/index.html
index 4860015..12d146c 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -11,7 +11,7 @@
data-action="dq-showcommands@window->commands#showCommands">
-