Skip to content

Commit 31956df

Browse files
committed
Add GitHub Actions partial for building the site
1 parent d071204 commit 31956df

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build site
2+
on:
3+
workflow_call:
4+
jobs:
5+
build-site:
6+
runs-on: ubuntu-latest
7+
permissions:
8+
contents: read
9+
steps:
10+
- name: Setup Deno
11+
uses: "denoland/setup-deno@v2"
12+
with:
13+
deno-version: v2.x
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
- name: Setup environment
17+
run: deno task setup
18+
- name: Install exiftool
19+
run: sudo apt-get -y install exiftool
20+
- name: Build site
21+
run: deno task build

0 commit comments

Comments
 (0)