Merge pull request #115 from weareinlog/feat/get-bounds-fit-bounds-co… #22
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: Publicar Biblioteca | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Configurar Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "18" | |
| - name: Instalar dependências | |
| run: npm install | |
| - name: Build do projeto | |
| run: npm run build | |
| - name: Publicar novo pacote | |
| run: npm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |