website/.github/workflows/default.yaml

63 lines
1.5 KiB
YAML
Raw Normal View History

2024-04-03 16:18:30 +02:00
name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
2024-04-03 16:48:10 +02:00
env:
RUNNER_TOOL_CACHE: /toolcache
2024-04-03 16:35:52 +02:00
runs-on: ubuntu-latest
2024-04-03 16:18:30 +02:00
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
2024-04-03 16:51:33 +02:00
with:
lfs: true
2024-04-03 16:35:52 +02:00
- name: 📦 Install PNPM
2024-04-03 16:48:10 +02:00
uses: https://github.com/pnpm/action-setup@v3
2024-04-03 16:35:52 +02:00
id: pnpm-install
with:
2024-04-03 16:48:10 +02:00
version: 8
2024-04-03 16:35:52 +02:00
run_install: false
2024-04-03 16:48:10 +02:00
- name: Get pnpm store directory
shell: bash
2024-04-03 16:35:52 +02:00
run: |
2024-04-03 16:48:10 +02:00
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
2024-04-03 16:35:52 +02:00
2024-04-03 16:48:10 +02:00
- uses: actions/cache@v4
name: Setup pnpm cache
2024-04-03 16:18:30 +02:00
with:
2024-04-03 16:48:10 +02:00
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
2024-04-03 16:18:30 +02:00
restore-keys: |
2024-04-03 16:48:10 +02:00
${{ runner.os }}-pnpm-store-
2024-04-03 16:35:52 +02:00
2024-04-03 16:48:10 +02:00
- name: Install, build, and upload your site output
uses: withastro/action@v2
2024-04-03 16:18:30 +02:00
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: 🚀 Deploy files via SFTP
uses: https://github.com/pressidium/lftp-mirror-action@v1
with:
host: ${{ secrets.FTP_HOST }}
port: ${{ secrets.FTP_PORT || 21 }}
user: ${{ secrets.FTP_USERNAME }}
pass: ${{ secrets.FTP_PASSWORD }}
onlyNewer: true
parallel: '4'
settings: 'sftp:auto-confirm=yes'
localDir: 'public'
2024-04-03 16:35:52 +02:00
remoteDir: '/share/new-website'
2024-04-03 16:18:30 +02:00
options: '--verbose'