Skip to content

Commit

Permalink
ci: updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Emon526 committed Jun 29, 2023
1 parent 978e086 commit 0423e39
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 47 deletions.
35 changes: 13 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,11 @@ jobs:
with:
xcode-version: latest

# - name: Set up Java
# uses: actions/setup-java@v2
# with:
# distribution: "zulu"
# java-version: "11"

- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 11

# - name: Run Tests
# run: bash ./gradlew test --stacktrace

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
Expand All @@ -56,23 +47,23 @@ jobs:
flutter pub get
# flutter pub deps
# - name: Run build_runner
# run: flutter pub run build_runner build
- name: Run build_runner
run: flutter pub run build_runner build

- name: Build Android
run: |
flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
flutter build apk --release
# flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
# - name: Build iOS
# run: |
# flutter build ios --release --no-codesign
# cd build/ios/iphoneos
# mkdir Payload
# cd Payload
# ln -s ../Runner.app
# cd ..
# zip -r app.ipa Payload
- name: Build iOS
run: |
flutter build ios --release --no-codesign
cd build/ios/iphoneos
mkdir Payload
cd Payload
ln -s ../Runner.app
cd ..
zip -r app.ipa Payload
- name: Generate Changelog
id: changelog
Expand All @@ -86,7 +77,7 @@ jobs:
with:
files: |
build/app/outputs/flutter-apk/*.apk
# build/ios/iphoneos/app.ipa
build/ios/iphoneos/app.ipa
# build/macos/Build/Products/Release/yoyo.mac.zip
# yy-linux-x86_64.tar.gz
# yy-windows.zip
Expand Down
24 changes: 0 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,3 @@
# [1.0.0](https://github.com/Emon526/Flutter_PassVault/compare/v0.1.0...v1.0.0) (2023-06-29)


### chore

* Initialize major version 1.0.0 ([2d1f07b](https://github.com/Emon526/Flutter_PassVault/commit/2d1f07b6c759a74a9cb4ea359bfe2f46a4b7e604))
* Initialize major version 1.0.0 ([aff1ece](https://github.com/Emon526/Flutter_PassVault/commit/aff1ece52ceaecda7f06710795df25e31cd6e10b))


### BREAKING CHANGES

* - The authentication system has been completely redesigned, requiring users to reset their passwords. Please follow the password reset instructions in the updated documentation.

- Added core functionality for the application.
- Created initial database schema.
- Updated project documentation.
* - The authentication system has been completely redesigned, requiring users to reset their passwords. Please follow the password reset instructions in the updated documentation.

- Added core functionality for the application.
- Created initial database schema.
- Updated project documentation.



# [0.1.0](https://github.com/Emon526/Flutter_PassVault/compare/3ef23bc66f2436ec6d694f57dd30442199da72bd...v0.1.0) (2023-06-27)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.0.0"
"version": "0.1.0"
}

0 comments on commit 0423e39

Please sign in to comment.