Skip to content

Merge pull request #57 from stainless-api/renovate/node-fetch-2.x-loc… #198

Merge pull request #57 from stainless-api/renovate/node-fetch-2.x-loc…

Merge pull request #57 from stainless-api/renovate/node-fetch-2.x-loc… #198

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
command: manifest
# The logic below handles the npm publication:
- uses: actions/checkout@v3
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: "https://registry.npmjs.org"
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v2
with:
version: 8.3.1
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
if: ${{ steps.release.outputs.release_created }}
- name: publish
run: node ./scripts/publish.mjs
if: ${{ steps.release.outputs.release_created }}