diff --git a/.github/workflows/release-node-bindings.yml b/.github/workflows/release-node-bindings.yml index 024f48fb1..6dc472610 100644 --- a/.github/workflows/release-node-bindings.yml +++ b/.github/workflows/release-node-bindings.yml @@ -47,11 +47,17 @@ jobs: - name: Change directory run: cd bindings_node - name: Install dependencies - run: yarn + run: | + cd bindings_node + yarn - name: Build target - run: yarn build --target ${{ matrix.target }} + run: | + cd bindings_node + yarn build --target ${{ matrix.target }} - name: List files - run: ls -la + run: | + cd bindings_node + ls -la # - name: Upload binary # uses: actions/upload-artifact@v3