Skip to content

Commit

Permalink
fix: Enable manual trigger of publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tpict committed Oct 6, 2023
1 parent 318767e commit 7daa5ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Publish Release(s)

on:
workflow_dispatch: {}
push:
tags:
- "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_savgol/test/flutter_savgol_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter_test/flutter_test.dart';

void main() {
test('Dummy test for ci', () {
// All tests are currently in the flutter_savgol example app.
// All tests are currently in the flutter_savgol example app
expect(true, true);
});
}
2 changes: 1 addition & 1 deletion packages/savgol/test/savgol_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:test/test.dart';

void main() {
test('Dummy test for ci', () {
// All tests are currently in the flutter_savgol example app.
// All tests are currently in the flutter_savgol example app
expect(true, true);
});
}

0 comments on commit 7daa5ca

Please sign in to comment.