Skip to content

Commit

Permalink
Merge pull request #12 from Conmmander/dev
Browse files Browse the repository at this point in the history
Flutter Version Bump + Resume Page Addition
  • Loading branch information
Conmmander authored Jun 22, 2024
2 parents 7b17e61 + 65dbb0d commit d5c2273
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dart_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
#- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
flutter-version: '3.22.2'
- run: flutter config --enable-web
- run: flutter pub get
- run: flutter build web --release
Expand All @@ -45,6 +45,7 @@ jobs:
mv assets/assets/web/CNAME .
mv assets/assets/web/robots.txt .
mv assets/assets/web/sitemap.xml .
mv assets/assets/pdf/Dodd_Ryan_Resume.pdf .
git init
git config --global user.email ryandodd0115@gmail.com
git config --global user.name Conmmander
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dart_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
#- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
flutter-version: '3.22.2'
- run: flutter config --enable-web
- run: flutter pub get
- run: flutter analyze --fatal-infos
Expand Down
Binary file added assets/pdf/Dodd_Ryan_Resume.pdf
Binary file not shown.
3 changes: 2 additions & 1 deletion lib/widgets/navigation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class Socials extends StatelessWidget {
SocialButton(url: 'https://www.linkedin.com/in/ryan-dodd-171a30249/', icon: FontAwesomeIcons.linkedinIn, tooltip: "LinkedIn"),
SocialButton(url: 'https://github.com/Conmmander', icon: FontAwesomeIcons.github, tooltip: "GitHub"),
SocialButton(url: 'mailto:ryan@ryandodd.org', icon: FontAwesomeIcons.google, tooltip: "ryan@ryandodd.org"),
SocialButton(url: 'tel:+18473404582', icon: Icons.phone, tooltip: "(847) 340 - 4582")
SocialButton(url: 'tel:+18473404582', icon: Icons.phone, tooltip: "(847) 340 - 4582"),
SocialButton(url: 'https://ryandodd.org/Dodd_Ryan_Resume.pdf', icon: Icons.book, tooltip: "Resume")
]
);
}
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.0+1
version: 1.1.0+1

environment:
sdk: '>=3.3.0 <4.0.0'
Expand Down Expand Up @@ -79,6 +79,7 @@ flutter:
- assets/img/icons/
- assets/img/experience_logos/
- assets/web/
- assets/pdf/
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg

Expand Down

0 comments on commit d5c2273

Please sign in to comment.