mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-11-01 02:46:32 +00:00
4a6dfa8e04
no issue - we will be switching to main soon, and want to update this workflow to show how it should be used
17 lines
370 B
YAML
17 lines
370 B
YAML
name: Deploy Theme
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: TryGhost/action-deploy-theme@v1.4.1
|
|
with:
|
|
api-url: ${{ secrets.GHOST_ADMIN_API_URL }}
|
|
api-key: ${{ secrets.GHOST_ADMIN_API_KEY }}
|
|
theme-name: "casper-master"
|