mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2025-03-04 08:59:18 +00:00
22 lines
337 B
YAML
22 lines
337 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
# pull_request:
|
|
# branches: [ main ]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Run a multi-line script
|
|
run: |
|
|
git add remote dokku dokku@dokku.danbee.in:me
|
|
git push dokku
|