From 5084d6744379d6f18d9eb55389ff35adebfced09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiana=20=F0=9F=9A=80=20=20Campanari?= Date: Mon, 2 Sep 2024 13:51:21 -0300 Subject: [PATCH] Delete .github/workflows/deploy-to-github.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiana 🚀 Campanari --- .github/workflows/deploy-to-github.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/deploy-to-github.yml diff --git a/.github/workflows/deploy-to-github.yml b/.github/workflows/deploy-to-github.yml deleted file mode 100644 index 3ce6244..0000000 --- a/.github/workflows/deploy-to-github.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Build project - run: | - # Comandos para build do seu projeto - npm install - npm run build - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v4 - with: - github_token: ${{ secrets.MyGITHUB_TOKEN }} - publish_dir: ./public