Skip to content

Commit

Permalink
feat(release): use release process on main
Browse files Browse the repository at this point in the history
  • Loading branch information
ashk1996 committed Sep 30, 2024
1 parent 44a8b05 commit d6b5e3b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Please

on:
push:
branches:
- main
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Release Please Action
uses: google-github-actions/release-please-action@v3
with:
release-type: node
package-name: '@ashk1996/boiler'

0 comments on commit d6b5e3b

Please sign in to comment.