From a739c6d48e625ec39eae2ef74594845389aca5d1 Mon Sep 17 00:00:00 2001 From: technoid99 <59440183+technoid99@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:41:23 +1100 Subject: [PATCH] Delete .github/workflows/deploy.yml --- .github/workflows/deploy.yml | 27 --------------------------- 1 file changed, 27 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 9fc5ddd..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: Run Flask app - run: python app.py