feat: use buildah on repo
Some checks failed
deploy / deploy (push) Failing after 17s

This commit is contained in:
ndsboy 2025-02-24 22:04:12 +00:00
parent 2c8b78eb9b
commit 64c4800a76
2 changed files with 2 additions and 7 deletions

View file

@ -12,17 +12,11 @@ jobs:
image: quay.io/buildah/stable:latest
if: github.ref == 'refs/heads/main'
steps:
- name: download
run: curl ${{ github.server_url }}/${{ github.repository }}/archive/main.tar.gz | tar -xz
- name: login
run: buildah login -u token -p ${{ secrets.SWABLAB_ORGA_PACKAGE_TOKEN }} git.swablab.de
- name: ls
run: ls documents
- name: build
run: buildah build -f documents/Containerfile -t git.swablab.de/${{ github.repository }}:latest documents
run: buildah build -t git.swablab.de/${{ github.repository }}:latest ${{ github.server_url }}/${{ github.repository }}.git
- name: push
run: buildah push git.swablab.de/${{ github.repository }}:latest

View file

@ -1,4 +1,5 @@
FROM docker.io/library/alpine AS build
COPY . .
ENV TYPST_FONT_PATHS=.
RUN apk add typst
RUN wget -O ubuntu.ttf https://cdn.jsdelivr.net/fontsource/fonts/ubuntu@latest/latin-400-normal.ttf &&\