Skip to content

Commit

Permalink
I think GH will start billing us for this
Browse files Browse the repository at this point in the history
  • Loading branch information
RJMurg authored Mar 29, 2024
1 parent 0ade4b2 commit 2d32eba
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/deploy-to-vps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Build and Deploy with Docker Compose
env:
EXPOSED_PORT: ${{ secrets.EXPOSED_PORT }}
run: |
ssh -o StrictHostKeyChecking=no ${{ secrets.USERNAME }}@${{ secrets.HOST }} << 'EOF'
cd /src/Website
Expand All @@ -29,7 +27,7 @@ jobs:
touch .env
chmod 644 .env
echo "EXPOSED_PORT=${EXPOSED_PORT}" > .env
echo "EXPOSED_PORT=${{secrets.EXPOSED_PORT}}" > .env
docker compose up -d --build
EOF

0 comments on commit 2d32eba

Please sign in to comment.