We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe10ed commit c714045Copy full SHA for c714045
.github/workflows/ci.yml
@@ -81,11 +81,13 @@ jobs:
81
run: tar -vcaf npm-workspace.tar.xz -C npm .
82
- name: Generate release notes
83
run: ./generate-release-notes.sh
84
+ - name: Package individual npm packages
85
+ run: ./package-npm-packages.sh
86
- name: Create GitHub release for tag
87
if: startsWith(github.ref, 'refs/tags/v')
88
uses: ncipollo/release-action@v1
89
with:
- artifacts: npm-workspace.tar.xz
90
+ artifacts: "*.tar.xz"
91
artifactContentType: application/x-xz
92
bodyFile: release-notes.md
93
draft: true
package-npm-packages.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+set -e
3
+
4
5
+for dir in */; do
6
+ [ -d "$dir" ] && tar -cJf "sharp-libvips-${dir%/}-1.2.5.tar.xz" "$dir"
7
+done
0 commit comments