Skip to content

Update server_cicd.yml #106

Update server_cicd.yml

Update server_cicd.yml #106

Workflow file for this run

# .github/workflows/ci-cd.yml
name: server CI/CD Pipeline
on:
push:
# paths:
# - "server/**"
branches:
- main
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/gradle-build-action@v3
with:
gradle-version: '8.8'
- name: Build with Gradle
run: |
cd server
./gradlew build -x test
- name: Deliver jar File to Internal Server through Bastion Host
env:
GCE_USER_HOME: ${{ secrets.GCE_USER_HOME }}
if: success()
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.GCP_INTERNAL_SERVER_VM_HOST }}
username: ${{ secrets.GCP_SERVER_VM_USER }}
key: ${{ secrets.GCP_INTERNAL_SERVER_SSH_PRIVATE_KEY }}
proxy_host: ${{ secrets.GCP_SERVER_VM_HOST }}
proxy_username: ${{ secrets.GCP_SERVER_VM_USER }}
proxy_key: ${{ secrets.GCP_SERVER_SSH_PRIVATE_KEY }}
source: server/build/libs/swdc-0.0.1-SNAPSHOT.jar
target: ${{GCE_USER_HOME}}/deployment/

Check failure on line 48 in .github/workflows/server_cicd.yml

View workflow run for this annotation

GitHub Actions / server CI/CD Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/server_cicd.yml (Line: 48, Col: 19): Unrecognized named-value: 'GCE_USER_HOME'. Located at position 1 within expression: GCE_USER_HOME .github/workflows/server_cicd.yml (Line: 64, Col: 19): Unrecognized named-value: 'GCE_USER_HOME'. Located at position 1 within expression: GCE_USER_HOME
- name: Deploy to Internal Server through Bastion Host
env:
GCE_USER_HOME: ${{ secrets.GCE_USER_HOME }}
if: success()
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.GCP_INTERNAL_SERVER_VM_HOST }}
username: ${{ secrets.GCP_SERVER_VM_USER }}
key: ${{ secrets.GCP_INTERNAL_SERVER_SSH_PRIVATE_KEY }}
port: 22
proxy_host: ${{ secrets.GCP_SERVER_VM_HOST }}
proxy_username: ${{ secrets.GCP_SERVER_VM_USER }}
proxy_key: ${{ secrets.GCP_SERVER_SSH_PRIVATE_KEY }}
proxy_port: 22
script: |
sudo docker image prune -f
sudo docker stop swdc-container || true
sudo docker rm swdc-container || true
cd ${{GCE_USER_HOME}}/deployment
sudo docker build -t swdc-app .
sudo docker run -d -p 8080:8080 --name swdc-container -v /mnt:/mnt swdc-app