Skip to content

using fedora for the action #10

using fedora for the action

using fedora for the action #10

Workflow file for this run

name: Deploy Zola Blog to Linode
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: fedora:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true
- name: Install Zola
run: sudo dnf install zola
- name: Build Zola site
run: |
zola build
- name: Deploy to Linode
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.LINODE_IP }}
username: ${{ secrets.LINODE_USERNAME }}
key: ${{ secrets.LINODE_SSH_KEY }}
script: |
# Clone the repository
git clone https://github.com/katxhal/xelog.git
cd xelog
# Build the Zola site
zola build
# Serve the Zola site
zola serve --interface 0.0.0.0 --port 8080 &
# Keep the process running
while true; do
sleep 60
done