-
Notifications
You must be signed in to change notification settings - Fork 2
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
2 changed files
with
20 additions
and
4 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 |
---|---|---|
|
@@ -4,9 +4,7 @@ on: | |
push: | ||
branches: | ||
- prod | ||
pull_request: | ||
branches: | ||
- prod | ||
- main | ||
|
||
jobs: | ||
next-build: | ||
|
@@ -52,9 +50,10 @@ jobs: | |
rm -rf .env | ||
ghcr-push: | ||
needs: next-build # Job depends on next-build(above) job | ||
needs: next-build | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Deploy to Production server | ||
- name: Deploy on Production server | ||
if: github.ref == 'refs/heads/prod' | ||
uses: appleboy/[email protected] | ||
|
@@ -70,3 +69,20 @@ jobs: | |
echo ${{ secrets.GHCR_TOKEN }} | sudo docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin | ||
sudo docker pull ghcr.io/myriadflow/webxr:prod | ||
sudo docker run --name="webxr" -p 8080:3000 -d ghcr.io/myriadflow/webxr:prod | ||
# Deploy to Development server | ||
- name: Deploy on Development server | ||
if: github.ref == 'refs/heads/main' | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.DEV_REMOTE_SERVER_ADDRESS }} | ||
username: ${{ secrets.SERVER_USERNAME }} | ||
key: ${{ secrets.DEV_REMOTE_SERVER_KEY }} | ||
port: ${{ secrets.SSH_PORT }} | ||
script: | | ||
pwd | ||
cd ~ | ||
sudo docker stop webxr && sudo docker rm webxr && sudo docker rmi ghcr.io/myriadflow/webxr:main | ||
echo ${{ secrets.GHCR_TOKEN }} | sudo docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin | ||
sudo docker pull ghcr.io/myriadflow/webxr:main | ||
sudo docker run --name="webxr" -p 8080:3000 -d ghcr.io/myriadflow/webxr:main |
File renamed without changes.