init commit
This commit is contained in:
commit
1a6ff54d11
|
@ -0,0 +1,50 @@
|
|||
name: "Alice Sites pull"
|
||||
description: "Updates and builds alice sites"
|
||||
author: "Carneiro"
|
||||
|
||||
inputs:
|
||||
site-dirname:
|
||||
description: "Site directory (inside /var/www/html/alice_sites) name"
|
||||
default: ${{ github.event.repository.name }}
|
||||
skip-build:
|
||||
description: "Wheather or not the sites skips building"
|
||||
default: "false"
|
||||
host:
|
||||
description: "SSH host address."
|
||||
default: "${{ secrets.SSH_HOST }}"
|
||||
port:
|
||||
description: "SSH port number."
|
||||
default: ${{ secrets.SSH_PORT }}
|
||||
username:
|
||||
description: "SSH username."
|
||||
default: "${{ secrets.SSH_USERNAME }}"
|
||||
key:
|
||||
description: "SSH private key"
|
||||
default: ${{ secrets.SSH_PRIV_KEY }}
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- uses: appleboy/ssh-action@v1.2.0
|
||||
env:
|
||||
SITE_DIRNAME: ${{ inputs.site-dirname }}
|
||||
REPO_NAME: ${{ gitea.repository }}
|
||||
SKIP_BUILD: ${{ inputs.skip-build }}
|
||||
with:
|
||||
host: ${{ inputs.host }}
|
||||
username: ${{ inputs.username }}
|
||||
key: ${{ inputs.key }}
|
||||
port: ${{ inputs.port }}
|
||||
envs: SITE_DIRNAME, REPO_NAME, SKIP_BUILD
|
||||
script: |
|
||||
SITES_DIR="/var/www/src/alice_sites"
|
||||
|
||||
# if site is not there yet, clone it
|
||||
[ -d "${SITES_DIR}/${SITE_DIRNAME}" ] ||
|
||||
sg www-data -c "git clone https://git.alice.ufsj.edu.br/$REPO_NAME"
|
||||
|
||||
cd "${SITES_DIR}/${SITE_DIRNAME}"
|
||||
git pull
|
||||
[ $SKIP_BUILD != false ] && exit 0
|
||||
bundle install
|
||||
make deploy
|
Loading…
Reference in New Issue