Fixing CI
Some checks failed
Build lyes.eu / build (push) Successful in 35s
Build lyes.eu / deploy (push) Failing after 17s

This commit is contained in:
Lyes Saadi 2025-12-18 13:51:08 +01:00
parent e038f17e67
commit 10c773a961
Signed by: lyes
GPG key ID: 55A1D803917CF39A

View file

@ -1,3 +1,5 @@
name: Build lyes.eu
on: on:
push: push:
branches: branches:
@ -7,14 +9,19 @@ jobs:
build: build:
runs-on: fedora-latest runs-on: fedora-latest
steps: steps:
- name: install dependencies
run: |
dnf install -y --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' terra-release
dnf install -y zola nodejs24 git
mv /usr/bin/node-24 /usr/bin/node
- name: checkout code - name: checkout code
uses: actions/checkout@v6 uses: actions/checkout@v6
- name: install dependencies with:
run: dnf install -y zola submodules: recursive
- name: build - name: build
run: zola build run: zola build
- name: upload output - name: upload output
uses: actions/upload-artifact@v6 uses: forgejo/upload-artifact@v4
with: with:
name: output name: output
path: public/ path: public/
@ -25,8 +32,12 @@ jobs:
- build - build
runs-on: fedora-latest runs-on: fedora-latest
steps: steps:
- name: install dependencies
run: |
dnf install -y nodejs24
mv /usr/bin/node-24 /usr/bin/node
- name: download build - name: download build
uses: actions/download-artifact@v7 uses: forgejo/download-artifact@v4
with: with:
name: output name: output
path: public/ path: public/