We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9489e2c commit 0569e0aCopy full SHA for 0569e0a
1 file changed
.github/workflows/deploy.yml
@@ -88,13 +88,17 @@ jobs:
88
password: ${{ secrets.GITHUB_TOKEN }}
89
90
- name: Build statically-linked binary 🔨
91
- run: nix build --print-build-logs .#mongodb-connector-${{ matrix.target }}
+ run: |
92
+ nix build --print-build-logs .#mongodb-connector-${{ matrix.target }}
93
+ mkdir -p release
94
+ cp result/bin/mongodb-connector release/mongodb-connector-${{ matrix.target }}
95
96
- name: Upload binaries to workflow artifacts 🚀
97
uses: actions/upload-artifact@v4
98
with:
99
name: mongodb-connector-${{ matrix.target }}
- path: result/bin/mongodb-connector
100
+ path: release
101
+ if-no-files-found: error
102
103
# Builds without nix to get Windows binaries
104
build-cli-binaries:
0 commit comments