Skip to content

Deploy

Deploy #103

Workflow file for this run

name: Deploy
concurrency:
group: deploy
on:
workflow_dispatch:
inputs:
ci_required:
description: 'CI Suite is required'
type: boolean
required: true
default: true
perform_deploy_skyrat_main:
description: 'Deploy Skyrat Main'
type: boolean
required: true
default: true
jobs:
CI:
uses: ./.github/workflows/ci_suite.yml # use the callable tests job to run tests

Check failure on line 22 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy.yml" -> "./.github/workflows/ci_suite.yml" (source branch with sha:f829ff4290e1eb40e9ca7145fec3cb534c180912) : workflow is not reusable as it is missing a `on.workflow_call` trigger
if: ${{ inputs.ci_required }}
deploy-skyrat-main:
name: Deploy Skyrat Main
runs-on: ubuntu-latest
needs: [CI]
if: always() && !cancelled() && !failure() && inputs.perform_deploy_skyrat_main
steps:
- name: Update and Build Skyrat Main
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-skyrat-main
journalctl --since $TIME -u deploy-skyrat-main --no-pager --all
systemctl is-failed deploy-skyrat-main | grep -q "failed" && echo "Deployment Failed!" && exit 1 || exit 0