Github theme deploy workflow doesn't move beyond "Queued"

Hi I’m just setting up on Ghost Pro hosting & have set up the Github Theme Deploy Workflow action.

The problem I have is that the workflow never moves beyond “Queued” (longest one was still in that state for 16 hours). Can someone please suggest where I might look to troubeshoot this issue. I have had a look around but I can’t find any logs.

This is my stock-standard YAML file

name: Krabi Theme Deploy
on:
  push:
    branches:
      - master
      - main
jobs:
  deploy:
    runs-on: ubuntu-18.04
    steps:
      - uses: actions/checkout@v2
      - uses: TryGhost/action-deploy-theme@v1.5.0
        with:
          api-url: ${{ secrets.GHOST_ADMIN_API_URL }}
          api-key: ${{ secrets.GHOST_ADMIN_API_KEY }}

and Repository secrets set up

Appreciate any help

I sorted this out; I had 2 problems.
Eventually after a day or more the action timed out with an error which pointed me to my first problem.

  1. An old version of TryGhost/action-deploy-theme
  2. When this didn’t work I realised there must be something wrong with my secrets. It was then I realised I was storing secrets in the wrong place; in “Codespaces - Repository Secrets” instead of “Actions - Repository secrets”

Now works as advertised :-)

1 Like