From ddc3db52a181d45bcea23ac363db79b11191bde2 Mon Sep 17 00:00:00 2001 From: Steven Thompson <44806974+thompsonsj@users.noreply.github.com> Date: Tue, 5 Dec 2023 00:34:30 +0000 Subject: [PATCH] fix(workflows): release please (#121) --- .github/workflows/release-please.js.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release-please.js.yml diff --git a/.github/workflows/release-please.js.yml b/.github/workflows/release-please.js.yml new file mode 100644 index 0000000..71a7bca --- /dev/null +++ b/.github/workflows/release-please.js.yml @@ -0,0 +1,24 @@ +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v4 + with: + # this assumes that you have created a personal access token + # (PAT) and configured it as a GitHub action secret named + # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important). + token: ${{ secrets.GITHUB_TOKEN }} + # this is a built-in strategy in release-please, see "Action Inputs" + # for more options + release-type: simple \ No newline at end of file