From f0c1032db46ac4a477bdc786bf5c4c5175cc143c Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Sat, 6 Jun 2020 10:29:04 -0700 Subject: [PATCH] build: switch to release-please action (#280) --- .github/release-please.yml | 2 -- .github/workflows/release-please.yml | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) delete mode 100644 .github/release-please.yml create mode 100644 .github/workflows/release-please.yml diff --git a/.github/release-please.yml b/.github/release-please.yml deleted file mode 100644 index 3c065997..00000000 --- a/.github/release-please.yml +++ /dev/null @@ -1,2 +0,0 @@ -releaseType: node -handleGHRelease: true diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 00000000..70660547 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,14 @@ +on: + push: + branches: + - master +name: release-please +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: bcoe/release-please-action@v1.2.1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + release-type: node + package-name: yargs-parser