Skip to content

Commit

Permalink
fix: add node release type and core path (#1437)
Browse files Browse the repository at this point in the history
* fix: add node release type and core path

Signed-off-by: Stef3st <steffen.van.den.driest@alliander.com>

* chore: remove package-name from release please action

Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>

---------

Signed-off-by: Stef3st <steffen.van.den.driest@alliander.com>
Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>
  • Loading branch information
Stef3st and pascalwilbrink authored Feb 19, 2024
1 parent ad08ff2 commit d1bde4e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ on:
push:
branches:
- main
paths:
- "packages/core/**"

permissions:
contents: write
pull-requests: write

name: release-please
jobs:
release-please:
Expand All @@ -15,6 +17,7 @@ jobs:
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node
command: manifest
token: ${{ secrets.GITHUB_TOKEN }}
# The logic below handles the npm publication:
Expand All @@ -23,7 +26,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
registry-url: "https://registry.npmjs.org"
if: ${{ steps.release.outputs.releases_created }}
- run: npm ci
if: ${{ steps.release.outputs.releases_created }}
Expand Down

0 comments on commit d1bde4e

Please sign in to comment.