From b7aac3e360862c5816d7aa8e61a3e2460043d2db Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 19 Jul 2023 14:51:17 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20`ghost.min.css`=20as?= =?UTF-8?q?set=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/TryGhost/DevOps/issues/48 - due to changes in the build workflow, we no longer depended on `ghost`'s own `build` before producing the tarball - as a result, the minified css was not produced and private pages were unstyled - this adds our own `build` step to the list of dependencies for `archive` --- ghost/core/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/core/package.json b/ghost/core/package.json index 570ae1f01e..2d2da7abc6 100644 --- a/ghost/core/package.json +++ b/ghost/core/package.json @@ -265,6 +265,7 @@ "targets": { "archive": { "dependsOn": [ + "build", "^build:ts", { "projects": [ From a715b8f3eded2006c8b58b81e4d2deaf2939d6c4 Mon Sep 17 00:00:00 2001 From: Ghost CI <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 13:18:06 +0000 Subject: [PATCH 2/2] v5.54.4 --- ghost/admin/package.json | 2 +- ghost/core/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/package.json b/ghost/admin/package.json index e490c7fca7..67eaf753b6 100644 --- a/ghost/admin/package.json +++ b/ghost/admin/package.json @@ -1,6 +1,6 @@ { "name": "ghost-admin", - "version": "5.54.3", + "version": "5.54.4", "description": "Ember.js admin client for Ghost", "author": "Ghost Foundation", "homepage": "http://ghost.org", diff --git a/ghost/core/package.json b/ghost/core/package.json index 2d2da7abc6..a7b68ac4bc 100644 --- a/ghost/core/package.json +++ b/ghost/core/package.json @@ -1,6 +1,6 @@ { "name": "ghost", - "version": "5.54.3", + "version": "5.54.4", "description": "The professional publishing platform", "author": "Ghost Foundation", "homepage": "https://ghost.org",