From f4d60743382de291adf9c3d14a288a96a0e35451 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Mon, 16 Dec 2024 10:51:47 +0100 Subject: [PATCH] CI: Remove deploy workflow We now use GitHub's native webhook feature to send push events. --- .github/workflows/deploy.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 5ea4050..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Bot Deployment - -on: - # Trigger the workflow every time a push is made to 'master' - push: - branches: [master] - # Allows you to run this workflow manually from the Actions tab on GitHub. - workflow_dispatch: - -jobs: - deploy: - name: Deploy to Production - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Invoke deployment hook - uses: distributhor/workflow-webhook@v3 - with: - webhook_url: ${{ secrets.DEPLOY_WEBHOOK_URL }} - webhook_secret: ${{ secrets.DEPLOY_WEBHOOK_SECRET }}