We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03422a6 commit 341a56fCopy full SHA for 341a56f
2 files changed
.github/workflows/ci-dev.yml
@@ -21,7 +21,6 @@ jobs:
21
22
# create a dev tag for every branch except master
23
tag_version:
24
- needs: test
25
if: ${{ github.ref_type == 'branch' && github.ref_name != 'master' }}
26
runs-on: ubuntu-latest
27
outputs:
internal/metrics/db.go
@@ -6,6 +6,7 @@ import (
6
"encoding/json"
7
"os"
8
"os/exec"
9
+ "time"
10
11
"github.com/superfly/flyctl/iostreams"
12
)
@@ -52,6 +53,8 @@ func FlushMetrics(ctx context.Context) error {
52
53
if err := cmd.Wait(); err != nil {
54
return err
55
}
56
+
57
+ time.Sleep(time.Millisecond * 500)
58
59
60
return nil
0 commit comments