Bump dependencies (#37) #9
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 | |
on: | |
push: | |
branches: [main] | |
env: | |
VITE_API_URL: ${{ vars.API_URL }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 22.X | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.X | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Replace symlinks by the targeted file | |
run: find ./dist -type l -exec sh -c 'cp --remove-destination "$(readlink "{}")" "{}"' \; | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: website | |
path: ./dist/ | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: website | |
- name: Upload to SFTP | |
uses: wangyucode/[email protected] | |
with: | |
host: ${{ secrets.UPLOAD_SFTP_HOST }} | |
username: ${{ secrets.UPLOAD_SFTP_USERNAME }} | |
password: ${{ secrets.UPLOAD_SFTP_PASSWORD }} | |
compress: true | |
localDir: ${{ github.workspace }} | |
remoteDir: ${{ secrets.UPLOAD_SFTP_DIRECTORY }} | |
exclude: "***/api/,***/.htaccess" | |
removeExtraFilesOnServer: true |