From 87bb34f8dc3d28853049d91620f634184ddb6af0 Mon Sep 17 00:00:00 2001 From: michael-siek Date: Fri, 13 Oct 2023 16:22:23 -0400 Subject: [PATCH 1/3] ci: fix GH release --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8493ca6a..8681d2ba 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -53,4 +53,9 @@ jobs: npx lerna publish from-package \ --force-publish='*' \ --yes - - uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 + - run: | + PKG_VERSION=$(jq -r .version < lerna.json) + gh release create v$PKG_VERSION \ + --title "Release v$PKG_VERSION" \ + --generate-notes \ + --repo ${{ github.repository }} From cefa36796ea5b060bb4c90ee912ae6888e50209b Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 16 Oct 2023 16:23:23 -0400 Subject: [PATCH 2/3] Update deploy.yml --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8681d2ba..741d9ef3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -55,7 +55,7 @@ jobs: --yes - run: | PKG_VERSION=$(jq -r .version < lerna.json) - gh release create v$PKG_VERSION \ - --title "Release v$PKG_VERSION" \ + gh release create $PKG_VERSION \ + --title "Release $PKG_VERSION" \ --generate-notes \ --repo ${{ github.repository }} From aea08d548e531460ae4cf30f14dfb9c54fec42f2 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 16 Oct 2023 16:35:47 -0400 Subject: [PATCH 3/3] Update .github/workflows/deploy.yml Co-authored-by: Steven Lambert <2433219+straker@users.noreply.github.com> --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 741d9ef3..c2ea1477 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -59,3 +59,4 @@ jobs: --title "Release $PKG_VERSION" \ --generate-notes \ --repo ${{ github.repository }} + --target master