Deploy #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
concurrency: | |
group: deploy | |
on: | |
workflow_dispatch: | |
inputs: | |
# ci_required: | |
# description: 'CI Suite is required' | |
# type: boolean | |
# required: true | |
# default: true | |
perform_deploy_sierra: | |
description: 'Deploy Sierra' | |
type: boolean | |
required: true | |
default: true | |
jobs: | |
# CI: | |
# uses: ./.github/workflows/ci.yml # use the callable tests job to run tests | |
# if: ${{ inputs.ci_required }} | |
deploy-sierra: | |
name: Deploy Sierra | |
runs-on: ubuntu-latest | |
# needs: [CI] | |
if: always() && !cancelled() && !failure() && inputs.perform_deploy_sierra | |
steps: | |
- name: Update and Build Sierra | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.PRODUCTION_HOST }} | |
username: ${{ secrets.PRODUCTION_USERNAME }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
passphrase: ${{ secrets.PRODUCTION_SSH_KEY_PASS }} | |
script: | | |
TIME=$(date +'%Y-%m-%d%T') | |
sudo systemctl --wait start deploy-sierra | |
journalctl --since $TIME -u deploy-sierra --no-pager --all | |
systemctl is-failed deploy-sierra | grep -q "failed" && echo "Deployment Failed!" && exit 1 || exit 0 |