From 93c7bddd07633a9c5e06edd6f678ce5298b6f9c1 Mon Sep 17 00:00:00 2001 From: Banks Nussman Date: Wed, 9 Aug 2023 23:39:12 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20remove=20unused=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 23 ----------------------- 1 file changed, 23 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 2c350aa5..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: deploy - -on: - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set Git config - run: | - git config --local user.email "actions@github.com" - git config --local user.name "Github Actions" - - name: Merge main into production - run: | - git fetch - git switch main - git pull - git switch production - git pull - git merge main - git push origin production \ No newline at end of file