From bc67594a4a6af488650cfea3e21447db522a5622 Mon Sep 17 00:00:00 2001 From: Michael Walter Van Der Velden Date: Sat, 11 Nov 2023 18:05:28 +0000 Subject: [PATCH] ci(github): Bootstrap new release process (#27) --- .github/workflows/ci.yml | 4 +--- .release-please-manifest.json | 3 +++ release-please-config.json | 10 ++++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dfc89e..b832f9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,7 @@ jobs: name: Release Please id: release with: - release-type: node - package-name: webmention-handler - path: / + command: manifest # The logic below handles the npm publication: - uses: actions/checkout@v3 # these if statements ensure that a publication only occurs when diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..8856464 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + "/": "0.0.8" +} \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..a15b47f --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,10 @@ +{ + "bootstrap-sha": "0284a34dfd2f8f44cd416a0c1870543849269925", + "last-release-sha": "0284a34dfd2f8f44cd416a0c1870543849269925", + "packages": { + "/": { + "release-type": "node", + "package-name": "webmention-handler" + } + } +} \ No newline at end of file