From d59a1ceb2dc9baf3db5c209cd65db3112fb22fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 18 Nov 2024 10:33:18 +0000 Subject: [PATCH] Fix LFS (#3) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://gitea.champs-libres.be/champs-libres/prez-concepts-chill/pulls/3 Co-authored-by: Julien Fastré Co-committed-by: Julien Fastré --- .changes/1.2.2-rc3.md | 5 +++++ .changes/unreleased/Fixed-20241118-112438.yaml | 3 +++ .gitea/workflows/build-image.yml | 12 ++++++++---- CHANGELOG.md | 6 ++++++ 4 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 .changes/1.2.2-rc3.md create mode 100644 .changes/unreleased/Fixed-20241118-112438.yaml diff --git a/.changes/1.2.2-rc3.md b/.changes/1.2.2-rc3.md new file mode 100644 index 0000000..9e3bc87 --- /dev/null +++ b/.changes/1.2.2-rc3.md @@ -0,0 +1,5 @@ +## 1.2.2-rc3 - 2024-11-18 +### Fixed +* Embed resources into presentation formation signature +* Checkout images using lfs +* Fixed CI diff --git a/.changes/unreleased/Fixed-20241118-112438.yaml b/.changes/unreleased/Fixed-20241118-112438.yaml new file mode 100644 index 0000000..2b29fc0 --- /dev/null +++ b/.changes/unreleased/Fixed-20241118-112438.yaml @@ -0,0 +1,3 @@ +kind: Fixed +body: Fixed CI +time: 2024-11-18T11:24:38.361711822+01:00 diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 857f7ff..184f744 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -16,10 +16,14 @@ jobs: build: runs-on: cth-ubuntu-latest steps: - - name: Check out repository - uses: https://github.com/actions/checkout@v4 - with: - lfs: true + - name: Git checkout with LFS + # see https://gitea.com/gitea/act_runner/issues/164#issuecomment-921571 + run: | + git init + git remote add origin https://gitea.champs-libres.be/champs-libres/prez-concepts-chill.git + git fetch --depth 1 origin ${{ gitea.ref }} + git checkout FETCH_HEAD + git lfs pull - name: update packages run: apt-get update diff --git a/CHANGELOG.md b/CHANGELOG.md index dabcb5a..ffae9b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 1.2.2-rc3 - 2024-11-18 +### Fixed +* Embed resources into presentation formation signature +* Checkout images using lfs +* Fixed CI + ## 1.2.2-rc2 - 2024-11-18 ### Fixed * Embed resources into presentation formation signature