Skip to content

fix: update matrix link #21

fix: update matrix link

fix: update matrix link #21

# name: πŸš€ Build and deploy website on push
on:
push:
branches:
- main
jobs:
web-deploy:
name: πŸŽ‰ Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: πŸ› οΈ Setup Zola
uses: taiki-e/install-action@v2
with:
tool: zola@0.19.1
- name: πŸ—οΈ Build website with Zola
run: zola build
- name: πŸ“‚ Deploy files via FTP
uses: SamKirkland/FTP-Deploy-Action@4.3.0
with:
server: ${{ secrets.FTP_WEB_SERVER }}
username: ${{ secrets.FTP_USER_NAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: ./public/
server-dir: /www/weryskok.ru/
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/files/**