We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3d4a8 commit 69c4379Copy full SHA for 69c4379
.github/workflows/posthog-upgrade.yml
@@ -56,6 +56,25 @@ jobs:
56
RETRY_TIMES: 20
57
RETRY_WAIT_SECONDS: 5
58
59
+ - name: Install new package version in hedgebox-dummy
60
+ shell: bash
61
+ run: |
62
+ if [ -d "hedgebox-dummy" ]; then
63
+ cd hedgebox-dummy
64
+ for i in $(seq 1 $RETRY_TIMES); do
65
+ if pnpm upgrade ${{ github.event.inputs.package_name }}@${{ github.event.inputs.package_version }}; then
66
+ break
67
+ else
68
+ [ $i -ne $RETRY_TIMES ] && sleep $RETRY_WAIT_SECONDS || false
69
+ fi
70
+ done
71
72
+ echo "hedgebox-dummy folder not found, skipping"
73
74
+ env:
75
+ RETRY_TIMES: 20
76
+ RETRY_WAIT_SECONDS: 5
77
+
78
- name: Generate branch name
79
id: generate-branch-name
80
shell: bash
0 commit comments