Skip to content

Commit

Permalink
try to change syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
maelys-buhler committed Mar 30, 2024
1 parent 9958d43 commit e9722fb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy to production

on:
push:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/[email protected]
with:
bundler-cache: true
- name: Install SSH key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Add known host
run: |
ssh-keyscan -p ${{ secrets.DEPLOY_HOST_SSH_PORT }} ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts
- name: Test SSH connection
run: |
ssh -vvv ${{ secrets.DEPLOY_USERNAME }}@${{ secrets.DEPLOY_HOST }} -p${{ secrets.DEPLOY_HOST_SSH_PORT }}
- name: Deploy
env:
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }}
DEPLOY_USERNAME: ${{ secrets.DEPLOY_USERNAME }}
DEPLOY_HOST_SSH_PORT: ${{ secrets.DEPLOY_HOST_SSH_PORT }}
run: |
bundle exec cap production deploy

0 comments on commit e9722fb

Please sign in to comment.