Skip to content

Commit

Permalink
🔖(coverage) Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakasar committed May 3, 2023
1 parent 04cd72a commit 0bd6a63
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- run: npm run build
- name: Run test coverage
run: npm run coverage
- name: Zip coverage results
run: zip -r coverage.zip "coverage/" "coverage.json"
- name: Upload artifacts to release
uses: softprops/action-gh-release@v1
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
files: |
coverage
coverage/json
files: coverage.zip

publish-npm:
needs: build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- run: npm run build
- name: Run test coverage
run: npm run coverage
- name: Zip coverage results
run: zip -r coverage.zip "coverage/" "coverage.json"
- name: Upload artifacts to release
uses: softprops/action-gh-release@v1
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
files: |
coverage
coverage/json
files: coverage.zip

publish-npm:
needs: build
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenysolutions/t-rex",
"version": "4.0.1-beta0",
"version": "4.0.1-beta1",
"description": "A fully compliant environment for the issuance and use of tokenized securities.",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit 0bd6a63

Please sign in to comment.