Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/deploy-to-brainpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy to Brainpod

on:
push:
branches: ["main", "feat/brainpod-integration"]
tags: ["v*"]

jobs:
build:
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- uses: actions/checkout@v5

- name: Build and push
uses: brainhivenl/steiger-action@v1
with:
cmd: build
args: --repo=registry.brainpod.io/grapes-cross
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM denoland/deno:latest AS builder

WORKDIR /app

COPY . .

RUN deno task build

FROM joseluisq/static-web-server:2-debian

COPY --from=builder /app/_site ./public
4 changes: 4 additions & 0 deletions steiger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build:
docs:
type: docker
context: .
Loading