diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 497b2c11..008ba555 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -189,6 +189,7 @@ jobs: run: | dir target/release mv target/release/${{ matrix.app }}.exe ${{ matrix.app }}.exe + mv target/release/bundle/msi/*.msi . - name: Release uses: softprops/action-gh-release@v1 @@ -197,4 +198,5 @@ jobs: REF: ${{ github.ref_name }} with: files: | - ${{ matrix.app }}.exe \ No newline at end of file + ${{ matrix.app }}.exe + *.msi \ No newline at end of file diff --git a/friendshipper/docs/setup.md b/friendshipper/docs/setup.md new file mode 100644 index 00000000..03968bd5 --- /dev/null +++ b/friendshipper/docs/setup.md @@ -0,0 +1,30 @@ +# Friendshipper Setup Requirements + +If you're reading this, you're probably interested in setting up Friendshipper for your own game project. This document will outline the constraints for doing so. + +## High-Level Technical Couplings + +Friendshipper currently relies on: + +- AWS + - S3 for storing game client/server builds + - EKS for running game servers and managing playtests + - [f11r-operator](https://github.com/believer-os/f11r-operator) is a Kubernetes operator that stores GameServers and Playtests as custom resources. Friendshipper creates these resources directly against the Kubernetes API. + - SSO is the _only_ authentication method supported by Friendshipper currently +- Unreal Engine 5 + - Friendshipper provdes a mechanism for downloading new versions of your studio's source-built engine, but these mechanisms assume the project's engine is Unreal. + - Friendshipper launches game servers with command line arguments that assume an Unreal Engine format. +- GitHub + - Friendshipper uses GitHub's merge queue feature for submitting work. Currently, your repo must have merge queue enabled. +- Argo Workflows + - Friendshipper uses Argo Workflows for running CI/CD pipelines. Friendshipper assumes that Argo Workflows is installed in the same Kubernetes cluster as the playtest game servers. + +Ideally, Friendshipper would be more flexible in these areas. We should support different S3-like backends, different game engines, and different CI/CD providers, etc. Over time, we expect pluggable interfaces for these to develop, but of course we're very open to contributions. Additionally, we should allow for disabling certain features of Friendshipper, such as the merge queue, if you don't want to use them. + +## Configuration Assumptions + +Friendshipper assumes particular configuration settings across your infrastructure stack. We'll outline them here. + +### AWS + +#### SSO diff --git a/friendshipper/src-tauri/tauri.conf.json b/friendshipper/src-tauri/tauri.conf.json index cef2ce4d..f38707a5 100644 --- a/friendshipper/src-tauri/tauri.conf.json +++ b/friendshipper/src-tauri/tauri.conf.json @@ -43,7 +43,7 @@ } }, "bundle": { - "active": false, + "active": true, "category": "DeveloperTool", "copyright": "", "deb": { @@ -68,7 +68,7 @@ }, "resources": [], "shortDescription": "", - "targets": "all", + "targets": ["msi"], "windows": { "certificateThumbprint": null, "digestAlgorithm": "sha256",