-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Deploy to VPS | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build and push Docker image | ||
run: | | ||
docker build -t price-calc . | ||
docker save price-calc > price-calc.tar | ||
- name: Transfer Docker image to VPS | ||
uses: appleboy/scp-action@master | ||
with: | ||
host: ${{ secrets.VPS_HOST }} | ||
username: ${{ secrets.VPS_USERNAME }} | ||
password: ${{ secrets.VPS_PASSWORD }} | ||
port: ${{ secrets.VPS_PORT }} | ||
source: "myapp.tar" | ||
target: "/tmp" | ||
|
||
- name: Deploy to VPS | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.VPS_HOST }} | ||
username: ${{ secrets.VPS_USERNAME }} | ||
password: ${{ secrets.VPS_PASSWORD }} | ||
port: ${{ secrets.VPS_PORT }} | ||
script: | | ||
docker load < /tmp/price-calc.tar | ||
docker stop -price-calc || true | ||
docker rm price-calc || true | ||
docker run -d --name price-calc -p 80:80 price-calc |
64a0950
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
product-price-calculator – ./
product-price-calculator.vercel.app
product-price-calculator-mohamedgallah.vercel.app
product-price-calculator-git-master-mohamedgallah.vercel.app