Skip to content

Commit

Permalink
Update build-prod.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cooops authored Jan 28, 2025
1 parent a46dc86 commit 80fa4b0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
# Triggers the workflow on push or pull request events but only for the "prod" branch
push:
branches: [ prod ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -15,22 +14,26 @@ jobs:
deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Add production environment protection
environment: production

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

# Set up SSH authentication using our private key
- name: Install SSH Key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.PROD_SSH_KEY }}

# Add our server to known_hosts to prevent SSH security prompts
- name: Add Known Hosts
run: ssh-keyscan -H 206.81.100.181 >> ~/.ssh/known_hosts

run: ssh-keyscan -H ${{ secrets.PROD_SERVER_IP }} >> ~/.ssh/known_hosts
# Connect to our server and run the update script
- name: Run Production Update Script
- name: Deploy
run: |
ssh [email protected] '/root/bin/update_prod.sh'
ssh ${{ secrets.PROD_SERVER_USER }}@${{ secrets.PROD_SERVER_IP }} '${{ secrets.PROD_DEPLOY_COMMAND }}'

0 comments on commit 80fa4b0

Please sign in to comment.