Skip to content

Commit f8d4809

Browse files
committed
fix retry action
1 parent 87fb1cd commit f8d4809

5 files changed

+15
-10
lines changed

.github/workflows/nitrite-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ jobs:
4848
with:
4949
max_attempts: 10
5050
timeout_minutes: 60
51-
command: flutter pub publish --force
52-
working-directory: packages/nitrite
51+
command: |
52+
cd packages/nitrite
53+
flutter pub publish --force

.github/workflows/nitrite_generator-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ jobs:
4848
with:
4949
max_attempts: 10
5050
timeout_minutes: 60
51-
command: flutter pub publish --force
52-
working-directory: packages/nitrite_generator
51+
command: |
52+
cd packages/nitrite_generator
53+
flutter pub publish --force

.github/workflows/nitrite_hive_adapter-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ jobs:
4848
with:
4949
max_attempts: 10
5050
timeout_minutes: 60
51-
command: flutter pub publish --force
52-
working-directory: packages/nitrite_hive_adapter
51+
command: |
52+
cd packages/nitrite_hive_adapter
53+
flutter pub publish --force

.github/workflows/nitrite_spatial-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ jobs:
4848
with:
4949
max_attempts: 10
5050
timeout_minutes: 60
51-
command: flutter pub publish --force
52-
working-directory: packages/nitrite_spatial
51+
command: |
52+
cd packages/nitrite_spatial
53+
flutter pub publish --force

.github/workflows/nitrite_support-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ jobs:
4848
with:
4949
max_attempts: 10
5050
timeout_minutes: 60
51-
command: flutter pub publish --force
52-
working-directory: packages/nitrite_support
51+
command: |
52+
cd packages/nitrite_support
53+
flutter pub publish --force

0 commit comments

Comments
 (0)