Merge pull request #309 from luxfi/dev/newProd #119
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: server | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'app/server/**' # Only trigger the workflow for changes in the server directory | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to GitHub Container Registry | |
run: | | |
docker login --username "${{ secrets.GH_USER }}" --password "${{ secrets.GH_TOKEN }}" ghcr.io | |
- name: Run Docker build and push with pnpm script | |
run: | | |
docker buildx build --platform linux/amd64 -t ghcr.io/luxfi/bridge/server:latest -f docker/Dockerfile . --push | |
working-directory: app/server | |
- name: Set up kubectl | |
uses: azure/setup-kubectl@v3 | |
with: | |
version: v1.30.6 | |
- name: Deploy to Kubernetes | |
env: | |
KUBE_YAML: ${{ secrets.KUBE_YAML }} | |
run: | | |
echo "$KUBE_YAML" > kubeconfig.yaml | |
export KUBECONFIG=$(pwd)/kubeconfig.yaml | |
pnpm run k8s:restart | |
working-directory: app/server |