Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ed741b392c | |||
| bed8ad176a | |||
| 4fb2770857 | |||
| 507ffe38ca | |||
| bf5b8a3be5 | |||
| 2bb760cfa1 | |||
| 062aec14ff | |||
| a5930f6d17 | |||
| d9b1aef52a | |||
| 76a31eaa8c | |||
| 05defa3ddc | |||
| 0229447545 | |||
| 839552f475 | |||
| 726bd227f7 | |||
| 3e03281e40 | |||
| 8145f6d649 | |||
| a390dfdd5d | |||
|
|
0d90c625e4 | ||
|
|
763ff5a33f |
100
.gitea/workflows/test.yaml
Normal file
100
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,100 @@
|
||||
name: Build Apps & Deploy to GitHub Pages
|
||||
on: [push]
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
# paths:
|
||||
# - "lib/**"
|
||||
# - "android/**"
|
||||
# - "web/**"
|
||||
# - "pubspec.yaml"
|
||||
# - ".github/workflows/**"
|
||||
# - "scripts/**"
|
||||
# pull_request:
|
||||
# branches:
|
||||
# - master
|
||||
# paths:
|
||||
# - "lib/**"
|
||||
# - "android/**"
|
||||
# - "web/**"
|
||||
# - "pubspec.yaml"
|
||||
# - ".github/workflows/**"
|
||||
# - "scripts/**"
|
||||
|
||||
env:
|
||||
HREFREPLACE: "IIITB_Menu"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
# - 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
|
||||
with:
|
||||
channel: master
|
||||
flutter-version: 3.32.8
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
channel: master
|
||||
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
|
||||
# - name: Analyze project
|
||||
# run: flutter analyze
|
||||
|
||||
# - name: Test project
|
||||
# run: flutter test
|
||||
|
||||
- name: Build Web Release
|
||||
run: flutter build web --base-href "/$HREFREPLACE/" --no-web-resources-cdn
|
||||
|
||||
# - name: Build Android Release
|
||||
# run: flutter build apk --split-per-abi --release --no-track-widget-creation --analyze-size --target-platform "android-arm64"
|
||||
|
||||
- name: Fix PWA Offline Support
|
||||
run: |
|
||||
cp scripts/fixOfflinePWA.sh .
|
||||
chmod +x fixOfflinePWA.sh
|
||||
./fixOfflinePWA.sh
|
||||
cat ./build/web/flutter_service_worker.js
|
||||
|
||||
# - name: Create Release
|
||||
# uses: marvinpinto/action-automatic-releases@v1.2.1
|
||||
# with:
|
||||
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
# automatic_release_tag: "latest"
|
||||
# prerelease: true
|
||||
# draft: false
|
||||
# title: "Git Build"
|
||||
# files: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
|
||||
|
||||
|
||||
@@ -15,3 +15,8 @@ Open the webpage in chrome, brave or similar browsers on an android device, clic
|
||||
### iOS:
|
||||
PWA functionality only works in Safari. Open the website in Safari, click the share button and select `Add to Home Screen` option. Follow the prompt to add the webpage as an app.
|
||||
|
||||
Test change for runner, current version is out of date, will push github stuff here later...
|
||||
|
||||
---
|
||||
|
||||
~ A Grammer Society Project.
|
||||
@@ -26,7 +26,7 @@ class MainApp extends StatelessWidget {
|
||||
"/info": (context) => AboutPage(),
|
||||
},
|
||||
initialRoute: "/",
|
||||
// home: const HomePage(),
|
||||
// home: const HomePage(),
|
||||
theme: ThemeData(useMaterial3: true),
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user