-
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.
Merge pull request #180 from NetSepio/ansm-patch-1
Update deploy-aws.yml
- Loading branch information
Showing
1 changed file
with
47 additions
and
27 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 |
---|---|---|
|
@@ -5,35 +5,39 @@ on: | |
branches: | ||
- main | ||
- prod | ||
|
||
jobs: | ||
|
||
Deploy: | ||
build_push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.GHCR_USERNAME }} | ||
password: ${{ secrets.GHCR_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.GHCR_USERNAME }} | ||
password: ${{ secrets.GHCR_TOKEN }} | ||
|
||
- name: Build and Push Docker Image | ||
run: | | ||
export CURRENT_BRANCH=${GITHUB_REF#refs/heads/} | ||
export TAG=$([[ $CURRENT_BRANCH == $(basename ${{ github.ref }}) ]] && echo $CURRENT_BRANCH || echo "latest") | ||
echo $TAG | ||
export GITHUB_REF_IMAGE=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA | ||
export GITHUB_BRANCH_IMAGE=ghcr.io/$GITHUB_REPOSITORY:$TAG | ||
export GITHUB_REF_IMAGE=$(echo $GITHUB_REF_IMAGE | tr '[:upper:]' '[:lower:]') | ||
export GITHUB_BRANCH_IMAGE=$(echo $GITHUB_BRANCH_IMAGE | tr '[:upper:]' '[:lower:]') | ||
docker build --build-arg version=$GITHUB_SHA -t $GITHUB_REF_IMAGE -t $GITHUB_BRANCH_IMAGE . | ||
echo "Pushing Image to GitHub Container Registry" | ||
docker push $GITHUB_REF_IMAGE | ||
docker push $GITHUB_BRANCH_IMAGE | ||
- name: Build and Push Docker Image | ||
run: | | ||
export CURRENT_BRANCH=${GITHUB_REF#refs/heads/} | ||
export TAG=$([[ $CURRENT_BRANCH == $(basename ${{ github.ref }}) ]] && echo $CURRENT_BRANCH || echo "latest") | ||
echo $TAG | ||
export GITHUB_REF_IMAGE=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA | ||
export GITHUB_BRANCH_IMAGE=ghcr.io/$GITHUB_REPOSITORY:$TAG | ||
export GITHUB_REF_IMAGE=$(echo $GITHUB_REF_IMAGE | tr '[:upper:]' '[:lower:]') | ||
export GITHUB_BRANCH_IMAGE=$(echo $GITHUB_BRANCH_IMAGE | tr '[:upper:]' '[:lower:]') | ||
docker build --build-arg version=$GITHUB_SHA -t $GITHUB_REF_IMAGE -t $GITHUB_BRANCH_IMAGE . | ||
echo "Pushing Image to GitHub Container Registry" | ||
docker push $GITHUB_REF_IMAGE | ||
docker push $GITHUB_BRANCH_IMAGE | ||
deploy: | ||
needs: build_push | ||
runs-on: self-hosted | ||
steps: | ||
- name: Deploy on DEV server | ||
if: github.ref == 'refs/heads/main' | ||
uses: appleboy/[email protected] | ||
|
@@ -50,11 +54,27 @@ jobs: | |
docker pull ghcr.io/netsepio/gateway:main | ||
docker run --restart=on-failure:14 --dns=1.1.1.1 --name="gateway" --env-file=.env -p 3000:3000 --net=bridge -d ghcr.io/netsepio/gateway:main | ||
- name: Deploy on PROD server | ||
- name: Deploy on PROD server 1 | ||
if: github.ref == 'refs/heads/prod' | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.PROD_REMOTE_SERVER_1 }} | ||
username: ${{ secrets.PROD_SERVER_USERNAME }} | ||
key: ${{ secrets.PROD_REMOTE_SERVER_KEY }} | ||
port: ${{ secrets.PROD_SSH_PORT }} | ||
script: | | ||
pwd | ||
cd gateway | ||
docker stop gateway && docker rm gateway && docker image rm ghcr.io/netsepio/gateway:prod | ||
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin | ||
docker pull ghcr.io/netsepio/gateway:prod | ||
docker run --restart=on-failure:14 --dns=1.1.1.1 --name="gateway" --env-file=.env -p 3000:3000 --net=bridge -d ghcr.io/netsepio/gateway:prod | ||
- name: Deploy on PROD server 2 | ||
if: github.ref == 'refs/heads/prod' | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.PROD_REMOTE_SERVER_ADDRESS }} | ||
host: ${{ secrets.PROD_REMOTE_SERVER_2 }} | ||
username: ${{ secrets.PROD_SERVER_USERNAME }} | ||
key: ${{ secrets.PROD_REMOTE_SERVER_KEY }} | ||
port: ${{ secrets.PROD_SSH_PORT }} | ||
|