7161dca4ca
- see https://github.com/marketplace/actions/deploy-ghost-theme - use the new deploy theme github action to automatically deploy master to a test site
11 lines
293 B
YAML
11 lines
293 B
YAML
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 }}
|