From 7161dca4cad56bdcfe996071892ba31876f0d3f5 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Fri, 18 Oct 2019 14:19:01 +0100 Subject: [PATCH] Added deploy ghost theme github action - see https://github.com/marketplace/actions/deploy-ghost-theme - use the new deploy theme github action to automatically deploy master to a test site --- .github/workflows/deploy-theme.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/deploy-theme.yml diff --git a/.github/workflows/deploy-theme.yml b/.github/workflows/deploy-theme.yml new file mode 100644 index 0000000..718ac2f --- /dev/null +++ b/.github/workflows/deploy-theme.yml @@ -0,0 +1,11 @@ +name: Deploy Theme +on: [push] +jobs: + deploy: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@master + - uses: TryGhost/action-deploy-theme@v1.0.0 + with: + api-url: ${{ secrets.GHOST_ADMIN_API_URL }} + api-key: ${{ secrets.GHOST_ADMIN_API_KEY }}