mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-22 11:33:07 +00:00
21 lines
477 B
YAML
21 lines
477 B
YAML
name: Deploy Website
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: ["main"]
|
|
paths: ["resources/ports.yml"]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
environment: website
|
|
name: Vercel Deploy
|
|
steps:
|
|
- name: Deploy via cURL
|
|
shell: bash
|
|
env:
|
|
DEPLOY_HOOK: ${{ secrets.VERCEL_DEPLOY_HOOK }}
|
|
run: curl -X POST "$DEPLOY_HOOK"
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|