Skip to content

Commit

Permalink
Re-enable quality gate
Browse files Browse the repository at this point in the history
  • Loading branch information
cachapa committed Apr 21, 2024
1 parent 121650d commit 4c9ee4f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Android
name: Android
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release iOS
name: iOS
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Linux x86-64
name: Linux x86-64
on:
workflow_call:
inputs:
Expand Down
File renamed without changes.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
android:
name: Android
uses: ./.github/workflows/release_android.yml
uses: ./.github/workflows/android.yml
needs: version
secrets: inherit
with:
Expand All @@ -77,25 +77,25 @@ jobs:

ios:
name: iOS
uses: ./.github/workflows/release_ios.yml
uses: ./.github/workflows/ios.yml
needs: version
secrets: inherit
with:
name: "${{ needs.version.outputs.name }}"
number: "${{ needs.version.outputs.number }}"
changelog: "${{ needs.version.outputs.changelog }}"

linux:
name: Linux
uses: ./.github/workflows/release_linux_x86_64.yml
linux_x86_64:
name: Linux x86-64
uses: ./.github/workflows/linux_x86_64.yml
needs: version
secrets: inherit
with:
name: "${{ needs.version.outputs.name }}"

web:
name: Web
uses: ./.github/workflows/release_web.yml
uses: ./.github/workflows/web.yml
needs: version
secrets: inherit
with:
Expand All @@ -104,7 +104,7 @@ jobs:
create_release:
name: Create release
runs-on: ubuntu-latest
needs: [ android, ios, linux ]
needs: [ version, android, ios, linux_x86_64, web ]
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Web
name: Web
on:
workflow_call:
inputs:
Expand Down
1 change: 1 addition & 0 deletions lib/settings/settings_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ class SettingsPage extends StatelessWidget {
final path =
'${(await getApplicationCacheDirectory()).path}/tudo_account_key.png';
await File(path).writeAsBytes(pngBytes, flush: true);
if (!context.mounted) return;
await Share.shareXFiles(
[XFile(path)],
subject: context.t.tudoAccountKey,
Expand Down
1 change: 0 additions & 1 deletion lib/util/update_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'package:in_app_update/in_app_update.dart';
import 'package:url_launcher/url_launcher_string.dart';

import '../registry.dart';
import 'build_info.dart';

class UpdateUtil {
static final Future<bool> updateAvailable = Platform.isAndroid
Expand Down

0 comments on commit 4c9ee4f

Please sign in to comment.