From 5b844bd2079b3586f5a9ac7dc9d5f72159ca9df1 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Fri, 5 Dec 2025 23:44:06 +0100 Subject: [PATCH] ci: removed deploy job Deploying is now part of the standard homeprod infrastructure :) --- .gitea/workflows/pipeline.yaml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 64c429c..553bce9 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -47,30 +47,3 @@ jobs: tags: | git.vhaudiquet.fr/vhaudiquet/lolstats-match_collector:latest git.vhaudiquet.fr/vhaudiquet/lolstats-match_collector:${{ github.sha }} - - deploy: - runs-on: ubuntu-latest - needs: - - build-and-push-images - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - sparse-checkout: | - docker-compose.yml - sparse-checkout-cone-mode: false - - - name: Docker Stack deploy - uses: leonidgrishenkov/docker-stack-deploy@v1.2.3 - with: - registry: https://git.vhaudiquet.fr - username: ${{ github.actor }} - password: ${{ secrets.PACKAGES_TOKEN }} - remote_host: docker-prod.local - remote_user: root - remote_private_key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }} - stack_file: "docker-compose.yml" - stack_name: "lolstats" - env_file: | - GIT_COMMIT_HASH=${{ github.sha }} - RIOT_API_KEY=${{ secrets.RIOT_API_KEY }}