22 lines
937 B
YAML
22 lines
937 B
YAML
# name: Run Action to Production
|
|
# run-name: ${{ gitea.actor }} is deploy application to production
|
|
# on:
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
# workflow_dispatch:
|
|
|
|
# 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
|
|
# run: ssh fikyb-ssh@103.241.205.253 "if cd /home/fikyb-dev/htdocs/pintuv2; then git checkout main && git pull && exit; else git clone https://gitea.unej.ac.id/efbe/pintuv2.git && exit; fi"
|
|
# - name: cleanup
|
|
# run: rm -rf ~/.ssh |