CI: GHA deploy (#2)
This commit is contained in:
parent
252d2e48af
commit
766b8816f1
1 changed files with 24 additions and 0 deletions
24
.github/workflows/cicd.yml
vendored
Normal file
24
.github/workflows/cicd.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: ci-cd
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: deploy to dokku instance
|
||||
uses: idoberko2/dokku-deploy-github-action@v1
|
||||
with:
|
||||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
dokku-host: 'planner.thermokar.st'
|
||||
app-name: 'webapp'
|
||||
# Keeping the following around, in case of emergencies:
|
||||
# git-push-flags: --force
|
Loading…
Add table
Reference in a new issue