Skip to content

Commit

Permalink
fix: fixes release actions
Browse files Browse the repository at this point in the history
A workflow cant trigger another.
  • Loading branch information
simonecorsi committed Oct 8, 2021
1 parent 86e8805 commit f99fefd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/publish.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,10 @@ jobs:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.changelog }}

- name: NPM Publish
if: ${{ steps.changelog.outputs.skipped == 'false' }}
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.npm_token }}
access: 'public'

0 comments on commit f99fefd

Please sign in to comment.