We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6427c27 commit 25ac2bbCopy full SHA for 25ac2bb
1 file changed
.github/workflows/build-node-fibers.yml
@@ -72,3 +72,19 @@ jobs:
72
npm install --nodedir="$GITHUB_WORKSPACE/node-install/usr/local"
73
npm test || true
74
find .
75
+
76
+ - name: Upload fibers.node archive latest
77
+ uses: actions/upload-artifact@v4
78
+ with:
79
+ name: node-fibers-${{ env.NODE_VERSION }}-${{ matrix.platform }}-${{ matrix.arch }}-LATEST
80
+ path: bin/*
81
82
+ - name: Upload fibers.node archive to release
83
+ uses: softprops/action-gh-release@v1
84
85
86
+ tag_name: node-fibers-${{ env.NODE_VERSION }}-release
87
+ files: ./bin/*
88
+ env:
89
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90
0 commit comments