Skip to content

Commit 4a6e338

Browse files
brainpod-bot[bot]dmeijboom
authored andcommitted
feat: brainpod integration
1 parent d9e330e commit 4a6e338

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Deploy to Brainpod
2+
3+
on:
4+
push:
5+
branches: ["main", "feat/brainpod-integration"]
6+
tags: ["v*"]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-24.04
11+
permissions:
12+
contents: read
13+
steps:
14+
- uses: actions/checkout@v5
15+
16+
- name: Build and push
17+
uses: brainhivenl/steiger-action@v1
18+
with:
19+
cmd: build
20+
args: --repo=registry.brainpod.io/grapes-cross

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM denoland/deno:latest AS builder
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
RUN deno task build
8+
9+
FROM joseluisq/static-web-server:2-debian
10+
11+
COPY --from=builder /app/_site ./public

steiger.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build:
2+
docs:
3+
type: docker
4+
context: .

0 commit comments

Comments
 (0)