Merge pull request #67 from EarthMaker-MC/fix/giscus-mime-types #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: Deploy to the FTP | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy to FTP | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
name: Clone the repository | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
name: Install Node.JS | |
with: | |
node-version: 20.x | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # | |
with: | |
path: ${{env.STORE_PATH}} | |
key: ${{runner.os}}-pnpm-cache-${{ hashFiles('./pnpm-lock.yaml')}} | |
restore-keys: ${{runner.os}}-pnpm-cache- | |
- name: Install dependencies | |
shell: bash | |
run: pnpm install --frozen-lockfile | |
- name: Build website | |
shell: bash | |
run: pnpm build | |
- name: Send built files to the FTP server | |
uses: SamKirkland/FTP-Deploy-Action@8e83cea8672e3fbcbb9fdafff34debf6ae4c5f65 #v4.3.5 | |
with: | |
server: ${{secrets.FTP_HOST}} | |
username: ${{secrets.FTP_USERNAME}} | |
password: ${{secrets.FTP_PASSWORD}} | |
local-dir: ./build/ | |
server-dir: / |