Skip to content

Commit 9727dfd

Browse files
author
code3-dev
committed
add sdk 36
1 parent dc5f805 commit 9727dfd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Flutter
2828
uses: subosito/flutter-action@v2
2929
with:
30-
# flutter-version: '3.32.8'
30+
flutter-version: '3.32.8'
3131
channel: 'stable'
3232

3333
- name: Create keystore properties file
@@ -40,8 +40,8 @@ jobs:
4040

4141
- name: Decode Keystore
4242
run: |
43-
echo "${{ secrets.KEY_STORE }}" | certutil -decode - > keystore.jks
44-
shell: cmd
43+
[System.Convert]::FromBase64String("${{ secrets.KEY_STORE }}") | Out-File -Encoding Byte keystore.jks
44+
shell: powershell
4545

4646
- name: Get dependencies
4747
run: flutter pub get

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,5 +978,5 @@ packages:
978978
source: hosted
979979
version: "6.5.0"
980980
sdks:
981-
dart: ">=3.8.1 <4.0.0"
981+
dart: ">=3.9.2 <4.0.0"
982982
flutter: ">=3.29.0"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1919
version: 1.2.0+1
2020

2121
environment:
22-
sdk: ^3.8.1
22+
sdk: ^3.9.2
2323

2424
# Dependencies specify other packages that your package needs in order to work.
2525
# To automatically upgrade your package dependencies to the latest versions

0 commit comments

Comments
 (0)