From 0c4a68b28d1f28e2b93704836a02fd07f63d81a4 Mon Sep 17 00:00:00 2001 From: Herman Karlsson Date: Thu, 7 Sep 2023 22:46:25 +0200 Subject: [PATCH] add autodeploy --- .github/workflows/deploy.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..abe1572 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,28 @@ +name: Deploy + +on: + push: + branches: [ master ] + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Git checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + # See the following link for documentation: + # https://github.com/marketplace/actions/dokku + - name: Push to sips + uses: dokku/github-action@v1.4.0 + with: + ssh_private_key: ${{ secrets.SIPS_GLOBAL_DEPLOY_KEY }} + git_remote_url: ssh://dokku@sips.datasektionen.se/tv + # force might feel risky, but there is no good reason why the server + # should ever not be a mirror of the deploy branch. And the errors we + # could get otherwise would probably be nasty to deal with + git_push_flags: --force \ No newline at end of file