Skip to content

Commit 341a56f

Browse files
committed
Add dev tags even on failing tests
1 parent 03422a6 commit 341a56f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci-dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121

2222
# create a dev tag for every branch except master
2323
tag_version:
24-
needs: test
2524
if: ${{ github.ref_type == 'branch' && github.ref_name != 'master' }}
2625
runs-on: ubuntu-latest
2726
outputs:

internal/metrics/db.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"encoding/json"
77
"os"
88
"os/exec"
9+
"time"
910

1011
"github.com/superfly/flyctl/iostreams"
1112
)
@@ -52,6 +53,8 @@ func FlushMetrics(ctx context.Context) error {
5253
if err := cmd.Wait(); err != nil {
5354
return err
5455
}
56+
57+
time.Sleep(time.Millisecond * 500)
5558
}
5659

5760
return nil

0 commit comments

Comments
 (0)