Skip to content

Merge pull request #11 from wellwelwel/release-please--branches--main… #10

Merge pull request #11 from wellwelwel/release-please--branches--main…

Merge pull request #11 from wellwelwel/release-please--branches--main… #10

name: '📩 Release Please'
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: 🤝 Release Please
uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: svps
changelog-path: 'CHANGELOG.md'
- name: ➕ Actions - Checkout
uses: actions/checkout@v3
if: ${{ steps.release.outputs.releases_created }}
- name: ➕ Actions - Setup NodeJS
uses: actions/setup-node@v3
if: ${{ steps.release.outputs.releases_created }}
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: ➕ Cache dependencies
uses: actions/cache@v3
if: ${{ steps.release.outputs.releases_created }}
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: 📦 Installing Dependencies
if: ${{ steps.release.outputs.releases_created }}
run: npm ci
- name: 🚀 Building SVPS
if: ${{ steps.release.outputs.releases_created }}
run: npm run build
- name: 🧙🏻 Building Examples
if: ${{ steps.release.outputs.releases_created }}
run: npm run build:examples
- name: 📥 Publishing Package
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish