Skip to content

Commit

Permalink
Try another route for releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Oct 17, 2024
1 parent b5c48c2 commit 17415d8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ jobs:
deploy:
runs-on: ubuntu-latest

permissions:
id-token: write # Required to mint token for npm package provenance
contents: write # Needed to create and write release notes in GitHub release

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
registry-url: "https://registry.npmjs.org"

- uses: Github-Actions-Community/merge-release@22d66d3f7750d57b2b8c05db6077205332527df8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- uses: tobua/release-npm-action@v3
with:
MANUAL_TRIGGER: "regular"
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.github
.prettierrc
.vscode
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"name": "@puzzmo/revenue-cat-webhook-types",
"version": "0.0.1",
"description": "TypeScript types for RevenueCat Webhooks. Hand-crafted from their docs, with JSDoc when appropriate and nullability manually added."
"description": "TypeScript types for RevenueCat Webhooks. Hand-crafted from their docs, with JSDoc when appropriate and nullability manually added.",
"publishConfig": {
"provenance": true
}
}

0 comments on commit 17415d8

Please sign in to comment.