mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
22 lines
409 B
YAML
22 lines
409 B
YAML
# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions.
|
|
# Documentation: https://docs.github.com/en/actions
|
|
|
|
name: deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.ref == 'refs/heads/main'
|
|
|
|
steps:
|
|
|
|
- name: Update the documentation
|
|
run: curl ${{ secrets.TRIGGER_DEPLOYMENT }}
|