test push
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s

This commit is contained in:
2023-10-19 10:46:59 +02:00
parent b3ded91d01
commit 69fd09bc25
2 changed files with 93 additions and 182 deletions

View File

@ -0,0 +1,24 @@
name: Build and push
run-name: ${{ github.actor }} building dogstats
on: [push]
env:
REGISTRY: gitea.haschek.at
IMAGE_NAME: $(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
jobs:
pull-on-server:
if: "contains(github.event.head_commit.message, 'push')"
name: Pulling repo on server
runs-on: ubuntu-latest
steps:
- name: Configure SSH
env:
SSH_KEY: ${{ secrets.SSH_KEY }}
run: |
mkdir -p ~/.ssh/
echo "$SSH_KEY" > ~/.ssh/staging.key
chmod 600 ~/.ssh/staging.key
- name: Run docker restart on Server
run: |
ssh -i ~/.ssh/staging.key -o StrictHostKeyChecking=no -p 22 -o UserKnownHostsFile=/dev/null ${{ secrets.SSH_WEBSERVER_IP }} "cd /var/www/dogstats/ && git pull"