Skip to content

This is where it all begins... #1

This is where it all begins...

This is where it all begins... #1

Workflow file for this run

name: Release Please
on:
push:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Run Release Please
uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}