We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3702012 commit 7a4d111Copy full SHA for 7a4d111
1 file changed
.github/workflows/carts.yml
@@ -42,3 +42,18 @@ jobs:
42
with:
43
name: ${{ matrix.cart }}_js
44
path: ${{ matrix.cart }}_js.null0
45
+
46
+ release:
47
+ name: Create Release
48
+ runs-on: ubuntu-latest
49
+ if: github.ref_type == 'tag'
50
+ needs: [c, js]
51
+ steps:
52
+ - name: Download all artifacts
53
+ uses: actions/download-artifact@v4
54
+ with:
55
+ path: artifacts
56
+ - name: Create Release and Upload Assets
57
+ uses: softprops/action-gh-release@v2
58
59
+ files: artifacts/**/*.null0
0 commit comments