Skip to content

Commit 185b83b

Browse files
authored
Merge pull request #2 from dcrasch/feature/devops-structure
add flutter_web
2 parents 90900b8 + b8ddcf4 commit 185b83b

File tree

8 files changed

+49
-6
lines changed

8 files changed

+49
-6
lines changed

.github/workflows/flutter_web.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Deploy Flutter Web to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main # or your default branch
7+
8+
permissions:
9+
contents: write
10+
pages: write
11+
id-token: write
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout source
19+
uses: actions/checkout@v4
20+
21+
- name: Setup Flutter
22+
uses: subosito/flutter-action@v2
23+
with:
24+
channel: stable
25+
26+
- name: Install dependencies
27+
run: flutter pub get
28+
29+
- name: Build Flutter Web
30+
run: flutter build web --release --base-href=/tessellationapp/
31+
32+
- name: Deploy to GitHub Pages
33+
uses: peaceiris/actions-gh-pages@v4
34+
with:
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
36+
publish_dir: ./build/web
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
A simple drawing program to create escher like tilings.
2+
3+
Github: https://github.com/dcrasch/tessellationapp
26.3 KB
Loading
448 KB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A simple drawing program to create escher like tilings.

fastlane/metadata/en-US/title.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tessellations

todo.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1-
# Flatpak
2-
3-
## Save figures
1+
## Save figures in flatpak
42
Store figure in Document subdir tessellationapp/
53
add --filesystem=xdg-documents/tessellationapp and save to that directory in the app
64

75

8-
# Android
6+
## Android devops
97

108
* Upload new app to play store.
119
* Upload app to f-droid
1210

13-
# Features
11+
## Webapp devops
12+
13+
* Build website using github page action
14+
15+
## Features
1416

1517
* Fix delete
1618
* add more figure
1719
* add round lines
18-
20+
* fix initial color
1921

0 commit comments

Comments
 (0)