Allow the usage of HTML tags in accordion-item description (#722) #368
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag version and publish | |
env: | |
CI: true | |
on: | |
push: | |
branches: | |
- master | |
- 1.x | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: ./tag-version.sh | |
- run: npm install && npm run build | |
- uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ./dist/pastanaga-angular/package.json |