Skip to content

Commit

Permalink
fix: fix desc
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Beer authored and Robin Beer committed Aug 2, 2022
1 parent 71994f6 commit 9671596
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
with:
name: build
path: build
- name: ZIP assets
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: |
zip -r build.zip ./build
zip -r coverage.zip ./coverage
- name: Create a release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: npx semantic-release
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
16 changes: 16 additions & 0 deletions .idea/sonarlint/issuestore/index.pb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ module.exports = {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
[
"@semantic-release/github",
{
assets: [
{ path: "build.zip", label: "Build" },
{ path: "coverage.zip", label: "Coverage" }
]
}
]
]
};

0 comments on commit 9671596

Please sign in to comment.