From 67a8dc7782e69fee4f93095dc04da6817aa0bddb Mon Sep 17 00:00:00 2001 From: opti1337 Date: Thu, 25 Dec 2025 07:30:57 +0600 Subject: [PATCH] update --- .gitea/workflows/deploy-client.yml | 137 +++++++++++++++-------------- client/app/components.d.ts | 2 - 2 files changed, 69 insertions(+), 70 deletions(-) diff --git a/.gitea/workflows/deploy-client.yml b/.gitea/workflows/deploy-client.yml index d9e4712..7f2194e 100644 --- a/.gitea/workflows/deploy-client.yml +++ b/.gitea/workflows/deploy-client.yml @@ -1,82 +1,83 @@ name: Deploy -# on: -# push: -# tags: -# - "v[0-9]+.[0-9]+.[0-9]+" +on: + workflow_dispatch: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" # paths: # - ".gitea/workflows/deploy-client.yml" # - "client/**" jobs: - publish-windows: - runs-on: ubuntu-latest +# publish-windows: +# runs-on: ubuntu-latest +# +# steps: +# - name: Keyscan +# run: | +# ssh-keyscan git.koptilnya.xyz >> ~/.ssh/known_hosts +# +# - name: Checkout +# uses: actions/checkout@v4 +# with: +# ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} +# ssh-strict: false +# persist-credentials: false +# +# - name: Build +# run: | +# docker build \ +# -t chad-client-windows-builder \ +# -f ./client/Dockerfile.windows \ +# ./client \ +# --build-arg COMMIT_SHA=${{ gitea.sha }} \ +# --build-arg API_BASE_URL=${{ vars.API_BASE_URL }} \ +# --build-arg TAURI_SIGNING_PRIVATE_KEY=${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} +# +# docker create --name chad-client-windows-container chad-client-windows-builder +# mkdir -p artifacts +# docker cp chad-client-windows-container:/artifacts artifacts/ +# docker rm chad-client-windows-container +# ls -la artifacts +# +# - name: Publish +# uses: akkuman/gitea-release-action@v1 +# with: +# files: | +# artifacts/** +# draft: true - steps: - - name: Keyscan - run: | - ssh-keyscan git.koptilnya.xyz >> ~/.ssh/known_hosts + publish-web: + runs-on: ubuntu-latest - - name: Checkout - uses: actions/checkout@v4 - with: - ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - ssh-strict: false - persist-credentials: false + steps: + - name: Keyscan + run: | + ssh-keyscan git.koptilnya.xyz >> ~/.ssh/known_hosts - - name: Build - run: | - docker build \ - -t chad-client-windows-builder \ - -f ./client/Dockerfile.windows \ - ./client \ - --build-arg COMMIT_SHA=${{ gitea.sha }} \ - --build-arg API_BASE_URL=${{ vars.API_BASE_URL }} \ - --build-arg TAURI_SIGNING_PRIVATE_KEY=${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} + - name: Checkout + uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} + ssh-strict: false + persist-credentials: false - docker create --name chad-client-windows-container chad-client-windows-builder - mkdir -p artifacts - docker cp chad-client-windows-container:/artifacts artifacts/ - docker rm chad-client-windows-container - ls -la artifacts + - name: Build + run: docker build -t chad-client -f ./client/Dockerfile.web ./client --build-arg COMMIT_SHA=${{ gitea.sha }} --build-arg API_BASE_URL=${{ vars.API_BASE_URL }} - - name: Publish - uses: akkuman/gitea-release-action@v1 - with: - files: | - artifacts/** - draft: true + - name: Stop old container + run: docker rm -f chad-client || true - # publish-web: - # runs-on: ubuntu-latest - - # steps: - # - name: Keyscan - # run: | - # ssh-keyscan git.koptilnya.xyz >> ~/.ssh/known_hosts - - # - name: Checkout - # uses: actions/checkout@v4 - # with: - # ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - # ssh-strict: false - # persist-credentials: false - - # - name: Build - # run: docker build -t chad-client -f ./client/Dockerfile.web ./client --build-arg COMMIT_SHA=${{ gitea.sha }} --build-arg API_BASE_URL=${{ vars.API_BASE_URL }} - - # - name: Stop old container - # run: docker rm -f chad-client || true - - # - name: Run - # run: | - # docker run -d \ - # --name chad-client \ - # --network traefik \ - # --label "traefik.enable=true" \ - # --label "traefik.http.routers.chad-client.rule=Host(\`chad.koptilnya.xyz\`)" \ - # --label "traefik.http.routers.chad-client.entrypoints=websecure" \ - # --label "traefik.http.routers.chad-client.tls.certresolver=myresolver" \ - # --label "traefik.http.services.chad-client.loadbalancer.server.port=80" \ - # chad-client:latest + - name: Run + run: | + docker run -d \ + --name chad-client \ + --network traefik \ + --label "traefik.enable=true" \ + --label "traefik.http.routers.chad-client.rule=Host(\`chad.koptilnya.xyz\`)" \ + --label "traefik.http.routers.chad-client.entrypoints=websecure" \ + --label "traefik.http.routers.chad-client.tls.certresolver=myresolver" \ + --label "traefik.http.services.chad-client.loadbalancer.server.port=80" \ + chad-client:latest diff --git a/client/app/components.d.ts b/client/app/components.d.ts index d7c3db7..4f8d51a 100644 --- a/client/app/components.d.ts +++ b/client/app/components.d.ts @@ -13,12 +13,10 @@ declare module 'vue' { PrimeButton: typeof import('primevue/button')['default'] PrimeButtonGroup: typeof import('primevue/buttongroup')['default'] PrimeCard: typeof import('primevue/card')['default'] - PrimeCheckbox: typeof import('primevue/checkbox')['default'] PrimeDivider: typeof import('primevue/divider')['default'] PrimeFloatLabel: typeof import('primevue/floatlabel')['default'] PrimeInputText: typeof import('primevue/inputtext')['default'] PrimeMenu: typeof import('primevue/menu')['default'] - PrimePanel: typeof import('primevue/panel')['default'] PrimePassword: typeof import('primevue/password')['default'] PrimeProgressBar: typeof import('primevue/progressbar')['default'] PrimeScrollPanel: typeof import('primevue/scrollpanel')['default']