Some checks failed
Deploy yourpart (blue-green) / deploy (push) Failing after 0s
- Updated the Bisaya course to include new evening greetings and sleep-related phrases in core patterns. - Added multiple exercises focusing on recognizing and using these phrases, improving practical language skills for learners. - Expanded lesson didactics to incorporate prompts for evening and sleep routines, enriching the overall learning experience.
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: Deploy yourpart (blue-green)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
SSH_HOST: ${{ vars.PROD_HOST }}
|
|
SSH_PORT: ${{ vars.PROD_PORT }}
|
|
SSH_USER: ${{ vars.PROD_USER }}
|
|
|
|
steps:
|
|
- name: Show resolved non-secret config
|
|
run: |
|
|
echo "SSH_HOST=$SSH_HOST"
|
|
echo "SSH_PORT=$SSH_PORT"
|
|
echo "SSH_USER=$SSH_USER"
|
|
|
|
- name: Prepare SSH
|
|
run: |
|
|
set -e
|
|
mkdir -p ~/.ssh
|
|
printf "%s" "${{ secrets.PROD_SSH_KEY }}" > ~/.ssh/id_ed25519
|
|
chmod 600 ~/.ssh/id_ed25519
|
|
ssh-keyscan -p "$SSH_PORT" "$SSH_HOST" >> ~/.ssh/known_hosts
|
|
|
|
- name: Test SSH connection
|
|
run: |
|
|
set -e
|
|
ssh -i ~/.ssh/id_ed25519 \
|
|
-o StrictHostKeyChecking=no \
|
|
-o BatchMode=yes \
|
|
-o ConnectTimeout=10 \
|
|
-p "$SSH_PORT" \
|
|
"$SSH_USER@$SSH_HOST" \
|
|
"echo SSH OK"
|
|
|
|
- name: Run blue-green deployment
|
|
run: |
|
|
set -e
|
|
ssh -i ~/.ssh/id_ed25519 \
|
|
-o StrictHostKeyChecking=no \
|
|
-o BatchMode=yes \
|
|
-o ConnectTimeout=10 \
|
|
-p "$SSH_PORT" \
|
|
"$SSH_USER@$SSH_HOST" \
|
|
"/home/tsschulz/deploy-yourpart-bluegreen.sh" |