Updated backend files with small minor hotfixes #79
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: Build 🏗️ and Deploy Documentation 🛳️ | |
on: | |
push: | |
branches: ["develop"] | |
paths: [ | |
"documentation/occupi-docs/pages/**", | |
"documentation/occupi-docs/components/**", | |
"documentation/occupi-docs/.gitignore", | |
"documentation/occupi-docs/next.config.js", | |
"documentation/occupi-docs/package.json", | |
"documentation/occupi-docs/theme.config.tsx", | |
"documentation/occupi-docs/tsconfig.json", | |
".github/workflows/deploy-docs.yml" | |
] | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: documentation/occupi-docs | |
jobs: | |
# Build job | |
build-test: | |
name: 🏗️ Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v4 | |
- name: 🏗 Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest # or "latest", "canary", <sha> | |
- name: 📦 Install dependencies with Bun | |
run: bun install | |
- name: 🚀 Build with Next.js | |
run: bun run build | |
build-push-docker: | |
name: 🐋 Build and Push Documentation Docker Image | |
runs-on: ubuntu-latest | |
needs: build-test | |
steps: | |
- name: ⬇️ Checkout code | |
uses: actions/checkout@v4 | |
- name: 🏗 Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: 🏗 Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: 🧑💻 Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: 🐳 Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: documentation/occupi-docs | |
file: documentation/occupi-docs/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ secrets.DOCKER_USERNAME }}/occupi-documentation:latest | |
deploy: | |
name: 🛳️ Deploy Documentation | |
runs-on: ubuntu-latest | |
needs: build-push-docker | |
steps: | |
- name: ⬇️ Checkout code | |
uses: actions/checkout@v4 | |
- name: 🪷 Copy files to VM | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.VM_IP }} | |
username: ${{ secrets.VM_USERNAME }} | |
key: ${{ secrets.VM_SSH_KEY }} | |
source: "documentation/occupi-docs/docker-compose.yml,documentation/occupi-docs/Dockerfile" | |
target: "/home/${{ secrets.VM_USERNAME }}/occupi-docs" | |
# SSH to VM and run commands | |
- name: 🚀 SSH to VM | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.VM_IP }} | |
username: ${{ secrets.VM_USERNAME }} | |
key: ${{ secrets.VM_SSH_KEY }} | |
script: | | |
cd /home/${{ secrets.VM_USERNAME }}/occupi-docs/documentation/occupi-docs | |
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
DOCKER_USERNAME=${{ secrets.DOCKER_USERNAME }} docker compose -f docker-compose.yml down | |
DOCKER_USERNAME=${{ secrets.DOCKER_USERNAME }} docker compose -f docker-compose.yml pull | |
DOCKER_USERNAME=${{ secrets.DOCKER_USERNAME }} docker compose -f docker-compose.yml up -d |