0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed canary build after yarn command changes

refs 7e6800b2b8

- referenced commit deprecated `grunt main` in favor of `yarn main` but
  this wasn't updated so we never installed dependencies for Admin,
  which caused the build to break
- this commit switches to the new command
This commit is contained in:
Daniel Lockyer 2021-07-06 10:22:07 +01:00
parent 541fb4d2db
commit 6eba445f23
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -22,7 +22,7 @@ jobs:
git config --global user.email "ghost@example.com"
- run: yarn
- run: grunt main
- run: yarn main
- run: echo "ghost_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- run: echo "ghost_admin_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV