From 469abc184e6c1f84286fa1a52999b15939737fb6 Mon Sep 17 00:00:00 2001 From: Shashiben Date: Sat, 14 Dec 2024 15:03:14 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Updated=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/github_deploy.yml | 52 ---------------------------- .github/workflows/netlify_deploy.yml | 6 ++-- 2 files changed, 3 insertions(+), 55 deletions(-) delete mode 100644 .github/workflows/github_deploy.yml diff --git a/.github/workflows/github_deploy.yml b/.github/workflows/github_deploy.yml deleted file mode 100644 index bdf0c44..0000000 --- a/.github/workflows/github_deploy.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Github Page Deploy - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: subosito/flutter-action@v2 - with: - channel: stable - - run: flutter config --enable-web - - run: flutter build web - - - name: Get dependencies - run: flutter pub get - - - name: Build release project - run: flutter build web --release - - - name: Upload production-ready build files - uses: actions/upload-artifact@v4 - with: - name: production-files - path: ./build/web - - deploy: - name: Deploy - needs: build - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' - - steps: - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: production-files - path: ./build - - - name: Deploy to gh-pages - uses: peaceiris/actions-gh-pages@v4 - with: - github_token: ${{ secrets.MY_GITHUB_SECRET }} - publish_dir: ./build \ No newline at end of file diff --git a/.github/workflows/netlify_deploy.yml b/.github/workflows/netlify_deploy.yml index 3321b89..ec2cb71 100644 --- a/.github/workflows/netlify_deploy.yml +++ b/.github/workflows/netlify_deploy.yml @@ -1,5 +1,5 @@ -name: CI +name: Netlify Deploy on: push: branches: [ master ] @@ -11,8 +11,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1 + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 with: channel: beta - run: flutter config --enable-web