Skip to content

Commit

Permalink
feat: release please Action
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Mar 12, 2024
1 parent 52b0b50 commit f667d6e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: release-please

on:
workflow_dispatch:
push:
branches:
- main

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: node
default-branch: main
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.10.0'
registry-url: https://registry.npmjs.org/
- run: |
yarn install --immutable --immutable-cache --check-cache
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f667d6e

Please sign in to comment.