Merge pull request #47 from telostat/release-please--branches--main #39
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
on: | |
push: | |
branches: | |
- main | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
command: manifest | |
release-type: node | |
- uses: actions/checkout@v3 | |
if: ${{ steps.release.outputs.release_created }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
if: ${{ steps.release.outputs.release_created }} | |
- name: Install dependencies | |
run: npm ci | |
if: ${{ steps.release.outputs.release_created }} | |
env: | |
HUSKY: 0 | |
- name: Build the project and generate docs | |
run: npm run build | |
if: ${{ steps.release.outputs.release_created }} | |
- name: Deploy docs to gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs | |
- run: npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.TELOSTAT_NPM_TOKEN}} | |
if: ${{ steps.release.outputs.release_created }} |