pintu2/.gitea/workflows/main.yaml

22 lines
977 B
YAML
Raw Normal View History

2024-03-02 18:06:48 +07:00
name: Run Action to Production
run-name: ${{ gitea.actor }} is deploy application to production
on:
push:
branches:
- master
workflow_dispatch:
2024-02-27 22:53:57 +07:00
2024-03-02 18:06:48 +07:00
jobs:
format:
name: run pull to sync on target message
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'Production')"
steps:
- name: install ssh keys
# check this thread to understand why its needed:
# https://stackoverflow.com/a/70447517
run: install -m 600 -D /dev/null ~/.ssh/id_rsa && echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }} > ~/.ssh/known_hosts
- name: connect and pull
2024-05-21 09:53:50 +07:00
run: ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} "if cd /home/fikyb-dev/htdocs/pintu2; then git checkout master && git pull && composer install --optimize-autoloader --no-dev && php artisan optimize && exit; else git clone ${{ gitea.repository }} && exit; fi"
2024-03-02 18:06:48 +07:00
- name: cleanup
run: rm -rf ~/.ssh