Skip to content

fixed some code revolving local hosting #6

fixed some code revolving local hosting

fixed some code revolving local hosting #6

Workflow file for this run

name: CI, CD, Front End Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Deploy to Digital Ocean
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
mkdir test
cd test
git clone [email protected]:software-students-fall2023/4-containerized-app-exercise-rizzballs.git
echo 'Deployment successful to digital ocean'