We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b9dfc commit 342cf40Copy full SHA for 342cf40
2 files changed
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+jobs:
8
+ Release:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Download artifacts
12
+ uses: dawidd6/action-download-artifact@v2
13
+ with:
14
+ workflow: build.yml
15
+ - name: Make archives
16
+ run: |
17
+ for dir in */; do
18
+ ( zip -r ./"${dir%/}".zip "$dir" )
19
+ done
20
+ - name: Create releases
21
+ uses: softprops/action-gh-release@v1
22
23
+ files: "./*.zip"
24
+ generate_release_notes: true
README.md
@@ -1,2 +1,4 @@
# libnode
NodeJS as shared library.
+See [Releases](https://github.com/sunoru/libnode/release).
0 commit comments