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 210ab65 commit 14aa1feCopy full SHA for 14aa1fe
1 file changed
.github/workflows/push.yml
@@ -56,7 +56,14 @@ jobs:
56
- name: Install edge version of whatsapp-web.js
57
if: github.ref_name == 'edge'
58
run: |
59
- npm install github:pedroslopez/whatsapp-web.js#main
+ npm install --save-exact github:pedroslopez/whatsapp-web.js#main
60
+ - name: Verify edge version update
61
+ if: github.ref_name == 'edge'
62
+ run: |
63
+ echo "package.json content:"
64
+ grep "whatsapp-web.js" package.json
65
+ echo "package-lock.json content:"
66
+ grep -A 5 '"whatsapp-web.js"' package-lock.json | head -10
67
- name: Build and push with dynamic tag
68
uses: docker/build-push-action@v5
69
with:
0 commit comments