Skip to content

Commit

Permalink
build(release-please.yml): reconfigure npm publish (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsonsj authored Jul 4, 2023
1 parent 7f28a47 commit ebc2193
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ name: release-please
jobs:
release-please:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: google-github-actions/release-please-action@v3
with:
Expand All @@ -22,10 +28,11 @@ jobs:
# 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
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
node-version: ${{ matrix.node-version }}
cache: 'yarn'
if: ${{ steps.release.outputs.release_created }}
- run: yarn install --frozen-lockfile
- run: yarn --cwd ./dev/ install
Expand Down

0 comments on commit ebc2193

Please sign in to comment.