Website #17
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: Website | |
on: | |
push: | |
branches: | |
- main | |
- development | |
paths: | |
- "Website/**" | |
pull_request: | |
branches: | |
- main | |
- development | |
paths: | |
- "Website/**" | |
workflow_dispatch: | |
workflow_call: | |
secrets: | |
DEPLOY_HOST: | |
required: true | |
DEPLOY_USERNAME: | |
required: true | |
DEPLOY_KEY: | |
required: true | |
DEPLOY_FOLDER: | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: sudo apt-get install -y musl-dev gcc-aarch64-linux-gnu libssl-dev pkg-config libudev-dev | |
- name: Add Toolchain ARM64-musl | |
run: rustup target add aarch64-unknown-linux-musl | |
- name: Build for ARM64-musl | |
working-directory: ./Website | |
run: | | |
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=aarch64-linux-gnu-gcc | |
export CC=aarch64-linux-gnu-gcc | |
cargo build --verbose --target aarch64-unknown-linux-musl --release | |
- uses: pnpm/action-setup@v4 | |
- name: Run Tailwind | |
working-directory: ./Website | |
run: pnpm run tailwind | |
- name: Upload Website | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Upload Website | |
path: | | |
./Website/target/aarch64-unknown-linux/release/FicsIt-Networks-Repository-Website | |
./Website/static/ | |
deploy: | |
needs: build | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
name: Deploy | |
steps: | |
- name: Download Website | |
uses: actions/download-artifact@v3 | |
with: | |
name: Website | |
- name: Copy Website artifact to server | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.DEPLOY_HOST }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
key: ${{ secrets.DEPLOY_KEY }} | |
source: "Website/*" | |
target: ${{ secrets.DEPLOY_FOLDER }} | |
- name: Docker Compose | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.DEPLOY_HOST }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
key: ${{ secrets.DEPLOY_KEY }} | |
script: | | |
cd $${{ secrets.DEPLOY_FOLDER }} | |
docker compose up --build --force-recreate |