We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb8105 commit 36da96cCopy full SHA for 36da96c
1 file changed
.github/workflows/release-cli-binary.yml
@@ -55,7 +55,15 @@ jobs:
55
run: npm run build
56
57
- name: Package binaries
58
- run: npm run package
+ run: |
59
+ if [ "${{ matrix.os }}" == "windows-latest" ]; then
60
+ npm run package:clean && npm run package:config && npm run package:blob && npm run package:win
61
+ elif [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
62
+ npm run package:clean && npm run package:config && npm run package:blob && npm run package:linux
63
+ elif [ "${{ matrix.os }}" == "macos-latest" ]; then
64
+ npm run package:clean && npm run package:config && npm run package:blob && npm run package:mac
65
+ fi
66
+ shell: bash
67
68
- name: Upload Binary
69
uses: actions/upload-release-asset@v1
0 commit comments