107 lines
2.5 KiB
YAML
107 lines
2.5 KiB
YAML
name: Build & Deploy to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "lib/**"
|
|
- "web/**"
|
|
- "pubspec.yaml"
|
|
- ".github/workflows/**"
|
|
- "scripts/**"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "lib/**"
|
|
- "web/**"
|
|
- "pubspec.yaml"
|
|
- ".github/workflows/**"
|
|
- "scripts/**"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3.6.0
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4.7.0
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Install Packages
|
|
working-directory: ./scripts
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
- name: Compile Menu
|
|
working-directory: ./scripts
|
|
run: python scrapeToJson.py
|
|
|
|
- name: Copy Data File
|
|
run: cp ./scripts/data.dart ./lib/data.dart
|
|
# - name: Cache Flutter dependencies
|
|
# uses: actions/cache@v1
|
|
# with:
|
|
# path: /opt/hostedtoolcache/flutter
|
|
# key: ${{ runner.OS }}-flutter-install-cache-${{ env.flutter_version }}
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2.10.0
|
|
with:
|
|
channel: 'stable'
|
|
|
|
- name: Get dependencies
|
|
run: flutter pub get
|
|
|
|
# - name: Analyze project
|
|
# run: flutter analyze
|
|
|
|
# - name: Test project
|
|
# run: flutter test
|
|
|
|
- name: Build release project
|
|
run: flutter build web --base-href "/IIITB_Menu/" --web-renderer html
|
|
|
|
- name: Create Release
|
|
uses: marvinpinto/action-automatic-releases@v1.2.1
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
automatic_release_tag: "latest"
|
|
prerelease: false
|
|
draft: false
|
|
title: "Bi-Weekly Release"
|
|
files: |
|
|
./scripts/out.txt
|
|
./scripts/out.json
|
|
|
|
- name: Upload production-ready build files
|
|
uses: actions/upload-artifact@v3.1.2
|
|
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@v2.1.1
|
|
with:
|
|
name: production-files
|
|
path: ./build
|
|
|
|
- name: Deploy to gh-pages
|
|
uses: peaceiris/actions-gh-pages@v3.9.3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./build
|