From 5386e7f380b4db481e78acc0e058fbdcb287823d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Krzy=C5=BCanowski?= Date: Thu, 7 Mar 2024 09:14:44 +0100 Subject: [PATCH] refactor: wip --- .github/workflows/preview-publish.yml | 22 +++++++++++----------- .github/workflows/release.yml | 2 ++ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/preview-publish.yml b/.github/workflows/preview-publish.yml index 83c596b..4944b3e 100644 --- a/.github/workflows/preview-publish.yml +++ b/.github/workflows/preview-publish.yml @@ -100,14 +100,14 @@ jobs: with: script: | github.rest.issues.updateComment({ - ...context.repo, - comment_id: comment_id, - body: `🌟 Pre-Release Created 🌟 - - The pre-release has been successfully created with the following details: - \`\`\` - # ${lernaOutput} - \`\`\` - You can now check out the latest version. - ` - }); \ No newline at end of file + ...context.repo, + comment_id: comment_id, + body: `🌟 Pre-Release Created 🌟 + + The pre-release has been successfully created with the following details: + \`\`\` + # ${lernaOutput} + \`\`\` + You can now check out the latest version. + ` + }); \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01a8dbd..e0ae21e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,8 @@ name: Release on: push: + paths: + - 'packages/**' branches: - main