fix(modals): added fix for wrongly assigned class to button #129
This file contains hidden or 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: Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish-gpr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12 | |
| # registry-url: https://npm.pkg.github.com/ | |
| # scope: "@rxdi" | |
| - run: npm install | |
| - run: npm run lint --if-present | |
| - run: npm test | |
| - run: git config --global user.email 'kristiqn.tachev@gmail.com' | |
| - run: git config --global user.name "Kristiyan Tachev" | |
| - run: npm config set '//registry.npmjs.org/:_authToken' "${{secrets.NPM_TOKEN}}" | |
| - run: rm -rf dist | |
| - run: tsc | |
| - run: cp -r ./dist/* . | |
| - run: npm version patch | |
| - run: npm publish --update-readme --access public --force | |
| env: | |
| NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
| - uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |