-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
bdbffab
commit 08027bc
Showing
1 changed file
with
71 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,71 @@ | ||
name: Deploy to AWS EC2 | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Get Github Actions IP | ||
id: ip | ||
uses: haythem/[email protected] | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.EC2_ACCESS_KEY }} | ||
aws-secret-access-key: ${{ secrets.EC2_SECRET_KEY }} | ||
aws-region: ${{ secrets.EC2_REGION }} | ||
|
||
- name: Add Github Actions IP to Security group | ||
run: | | ||
aws ec2 authorize-security-group-ingress --group-id ${{ secrets.EC2_SG_ID }} --protocol tcp --port 22 --cidr ${{ steps.ip.outputs.ipv4 }}/32 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Set up Docker Environment | ||
run: | | ||
touch ./.env | ||
echo "DB_CONNECTION_URL=${{ secrets.MYSQL_DB_URL }}" >> .env | ||
echo "USER_NAME=${{ secrets.DB_USER }}" >> .env | ||
echo "PASSWORD=${{ secrets.DB_PASSWORD }}" >> .env | ||
echo "FILE_STORAGE_DIR=${{ secrets.FILE_PATH }}" >> .env | ||
echo "SECRET_KEY=${{ secrets.SECRET_KEY }}" >> .env | ||
echo "ACCESS_EXPIRE=${{ secrets.ACCESS_EXPIRE }}" >> .env | ||
echo "REFRESH_EXPIRE=${{ secrets.REFRESH_EXPIRE }}" >> .env | ||
shell: bash | ||
|
||
# Gradle build | ||
- name: Build with Gradle | ||
run: ./gradlew bootJar | ||
|
||
- name: web docker build and push | ||
run: | | ||
docker login -u ${{ secrets.DOCKER_ID }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
docker build -t ${{ secrets.DOCKER_REPO }}/planit-server . | ||
docker push ${{ secrets.DOCKER_REPO }}/planit-server | ||
- name: Deploy to EC2 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.EC2_HOST }} | ||
username: ${{ secrets.EC2_USER }} | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
script: | | ||
sudo docker rm -f $(docker ps -qa) | ||
sudo docker pull ${{ secrets.DOCKER_REPO }}/planit-server | ||
docker-compose up -d | ||
docker image prune -f | ||
- name: Remove Github Actions IP From Security Group | ||
run: | | ||
aws ec2 revoke-security-group-ingress --group-id ${{ secrets.EC2_SG_ID }} --protocol tcp --port 22 --cidr ${{ steps.ip.outputs.ipv4 }}/32 |