-
Notifications
You must be signed in to change notification settings - Fork 7
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 #51 from Sunbird-ALL/all-1.3-dev
Merging changes to main from all 1.3 dev for release
- Loading branch information
Showing
5 changed files
with
537 additions
and
12 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: DEV DEPLOYMENT | |
|
||
on: | ||
push: | ||
branches: [ all-1.1-dev ] | ||
branches: [ all-1.3-dev ] | ||
|
||
jobs: | ||
build: | ||
|
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,71 @@ | ||
name: STAGING DEPLOYMENT | ||
|
||
on: | ||
push: | ||
branches: [ all-1.3-staging ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME_DEVOPS }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN_DEVOPS }} | ||
|
||
- | ||
name: Load .env from GitHub Secret | ||
run: echo "${{ secrets.MY_ENV_VARS_STAGING }}" > .env | ||
|
||
- | ||
name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ secrets.CONTAINER_REGISTRY_STAGING }}:${{ secrets.IMAGE_TAG }} | ||
env: | ||
MY_ENV_VARS: ${{ secrets.MY_ENV_VARS_STAGING }} | ||
deploy: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
needs: [build] | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Deploy Stack | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
port: ${{ secrets.PORT }} | ||
script: | | ||
ssh -i ~/.ssh/all_staging_key.pem ${{ secrets.USERNAME_STAGING }}@${{ secrets.HOST_STAGING }} 'bash -s' << 'EOF' | ||
docker login | ||
docker container stop ${{ secrets.CONTAINER_NAME }} | ||
docker rm ${{ secrets.CONTAINER_NAME }} | ||
docker rmi ${{ secrets.CONTAINER_REGISTRY_STAGING }}:${{ secrets.IMAGE_TAG }} | ||
docker pull ${{ secrets.CONTAINER_REGISTRY_STAGING }}:${{ secrets.IMAGE_TAG }} | ||
cd /home/all-staging-user/all-services/all-content-service | ||
sudo docker-compose up -d --force-recreate --no-deps | ||
EOF | ||
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
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
Oops, something went wrong.