Mobile reactions and WS reconnection

* [feat] Add reaction menu item for mobile clients.

* [fix] Reconnection to the websocket with exponential backoff.

* [chore] Dev flake.

* [hack] Push to my personal gcr.
This commit is contained in:
Mariano Uvalle
2026-02-04 16:29:07 -08:00
committed by jmug
parent 41f47a1a3f
commit 1ce522579e
10 changed files with 189 additions and 11 deletions

View File

@@ -46,22 +46,16 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: revoltchat/client, ghcr.io/revoltchat/client
images: ghcr.io/AYM1607/revoltchat-client
env:
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
- name: Login to DockerHub
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Github Container Registry
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GCR_TOKEN }}
- name: Build and publish
uses: docker/build-push-action@v6
with: