SEMPL/.forgejo/workflows/ci.yaml
Lyes Saadi cde4efaad0
Some checks failed
Build lyes.eu / build (push) Failing after 45s
Fixing the CI
2026-01-15 21:17:15 +01:00

31 lines
768 B
YAML

name: Build lyes.eu
on:
push:
branches:
- main
jobs:
build:
runs-on: fedora-latest
steps:
- name: install dependencies
run: |
dnf install -y --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' terra-release
dnf install -y typst nodejs24 git
mv /usr/bin/node-24 /usr/bin/node
- name: checkout code
uses: actions/checkout@v6
with:
submodules: recursive
- name: build
run: |
mkdir output
typst c 1.typ output/
typst c 2.typ output/
- name: upload part 1
uses: forgejo/upload-artifact@v4
with:
name: SEMPL.zip
path: output
if-no-files-found: error