Skip to content

Commit

Permalink
test ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
AfandyW committed May 20, 2024
1 parent e38a913 commit c290ee7
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Development CI/CD Pipeline

on:
push:
branches:
- development

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Deploy to Production Environment
env:
VPS_IP: ${{ secrets.VPS_IP }}
VPS_USER: ${{ secrets.VPS_USER }}
VPS_KEY: ${{ secrets.VPS_KEY }}
run: |
echo "$VPS_KEY" > vps_key.pem
chmod 600 vps_key.pem
ssh -o StrictHostKeyChecking=no -i vps_key.pem $VPS_USER@$VPS_IP "
cd /home/hmcroot/app/development/lms-be &&
git pull origin development &&
go mod tidy &&
go build -o main . &&
sudo systemctl restart lms-be-development"

0 comments on commit c290ee7

Please sign in to comment.