-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
5,405 additions
and
12,234 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
name: Release Please | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
release-please: | ||
permissions: | ||
id-token: write # to enable use of OIDC for npm provenance | ||
# permissions for pushing commits and opening PRs are handled by the `generate-token` step | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: tibdex/github-app-token@0914d50df753bbc42180d982a6550f195390069f # v2 | ||
id: generate-token | ||
with: | ||
app_id: ${{ secrets.ECOSPARK_APP_ID }} | ||
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }} | ||
# This action will create a release PR when regular conventional commits are pushed to main, it'll also detect if a release PR is merged and npm publish should happen | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
release-type: node | ||
token: ${{ steps.generate-token.outputs.token }} | ||
|
||
# Publish to NPM on new releases | ||
- uses: actions/checkout@v4 | ||
if: ${{ steps.release.outputs.releases_created }} | ||
- uses: actions/setup-node@v3 | ||
if: ${{ steps.release.outputs.releases_created }} | ||
with: | ||
cache: npm | ||
node-version: lts/* | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci --ignore-scripts | ||
if: ${{ steps.release.outputs.releases_created }} | ||
- run: npm audit signatures | ||
if: ${{ steps.release.outputs.releases_created }} | ||
# Release Please has already incremented versions and published tags, so we just | ||
# need to publish the new version to npm here | ||
- run: npm publish --provenance | ||
if: ${{ steps.release.outputs.releases_created }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.