13 lines
293 B
YAML
13 lines
293 B
YAML
name: Deploying Static Site
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build:
|
|
container: alpine:latest
|
|
steps:
|
|
- run: apk add zola nodejs git
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: zola build
|