Merge pull request #22 from dotslashf:development #4
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
name: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- main | |
env: | |
PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
GCE_INSTANCE: arsip-template-vm | |
GCE_INSTANCE_ZONE: asia-southeast1-c | |
REGION: asia-southeast1 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- id: "auth" | |
uses: "google-github-actions/auth@v2" | |
with: | |
credentials_json: "${{ secrets.GCP_SA_KEY }}" | |
- name: "Set up Cloud SDK" | |
uses: "google-github-actions/setup-gcloud@v2" | |
- name: "Use gcloud CLI" | |
run: "gcloud info" | |
- name: Configure Docker for Artifact Registry | |
run: | | |
gcloud auth configure-docker $REGION-docker.pkg.dev | |
- name: Build and push Docker image | |
run: | | |
docker build -t $REGION-docker.pkg.dev/$PROJECT_ID/arsip-template/app:${{ github.sha }} . | |
docker push $REGION-docker.pkg.dev/$PROJECT_ID/arsip-template/app:${{ github.sha }} | |
- name: Deploy to VM | |
run: | | |
gcloud compute ssh --zone $GCE_INSTANCE_ZONE $GCE_INSTANCE --command ' | |
# Pull the new image | |
gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev | |
docker pull ${{ env.REGION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/arsip-template/app:${{ github.sha }} | |
docker stop arsip-template || true | |
docker rm arsip-template || true | |
docker run -d --name arsip-template -p 3000:3000 gcr.io/${{ env.PROJECT_ID }}/arsip-template:${{ github.sha }} | |
' |