chore: experiment with deployment to blog

This commit is contained in:
Damillora 2021-04-14 20:37:26 +07:00
parent 9f72b03781
commit b0fba2eeae
1 changed files with 14 additions and 0 deletions

View File

@ -11,7 +11,21 @@ jobs:
- run: yarn install
- run: yarn build
- name: Release
if: github.ref == 'refs/heads/master'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release
- name: Prepare for deployment
if: github.ref == 'refs/heads/nanaomoe'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release --publish false
- name: Deploy Ghost Theme
uses: TryGhost/action-deploy-theme@v1.4.0
if: github.ref == 'refs/heads/nanaomoe'
with:
api-url: ${{ secrets.GHOST_ADMIN_API_URL }}
api-key: ${{ secrets.GHOST_ADMIN_API_KEY }}
file: "dist/yuika.zip"