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 fc897b5 commit b5d0c7cCopy full SHA for b5d0c7c
β.github/workflows/release.yml
@@ -11,6 +11,12 @@ jobs:
11
with:
12
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
13
14
+ - name: Build client
15
+ run: |
16
+ npm run build
17
+ cd dist
18
+ zip -r ../client.zip .
19
+
20
- name: semantic-release
21
env:
22
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
β.releaserc.json
@@ -11,7 +11,12 @@
"message": "π release ${nextRelease.version}"
}
],
- "@semantic-release/github",
+ [
+ "@semantic-release/github",
+ {
+ "assets": [{ "path": "client.zip", "label": "Client" }]
+ }
+ ],
"semantic-release-gitmoji"
"successComment": false
0 commit comments