Skip to content

fix: πŸ› Update feed generation for new zola version #2

fix: πŸ› Update feed generation for new zola version

fix: πŸ› Update feed generation for new zola version #2

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Zola
run: |
sudo snap install --edge zola
- name: Run Zola
run: |
zola build
- name: Configure SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Deploy to Website
run: |
rsync -avx --exclude .DS_Store public ${{ secrets.TARGET }}