Skip to content

Commit

Permalink
Add deploy script.
Browse files Browse the repository at this point in the history
  • Loading branch information
aterenin committed Dec 8, 2023
1 parent 60428c8 commit b37ea07
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build and Deploy Website

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- run: curl -s -L "https://github.com/getzola/zola/releases/download/v0.17.2/zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz" | tar xzf - -C /usr/local/bin
- run: echo "48742322fc0660afb22a4ce194e9b2bd610b5bd36f43abe121e56eb8a704b464 /usr/local/bin/zola" | shasum -a 256 -b -c --strict
- run: ls -a
- run: zola build

0 comments on commit b37ea07

Please sign in to comment.