From 0907fdf49c5f4220aef5a5f7fb07d995c1a7b063 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Mon, 27 Oct 2025 22:57:19 +0200 Subject: [PATCH] CI/release: run cmake configure --- .github/workflows/release.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 437f7066..1288ae33 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,12 +8,20 @@ on: jobs: source-tarball: runs-on: ubuntu-latest + container: + image: archlinux steps: - - name: Checkout Hyprland - id: checkout + - name: Checkout repository actions uses: actions/checkout@v4 with: - submodules: recursive + sparse-checkout: .github/actions + + - name: Setup base + uses: ./.github/actions/setup_base + + - name: Generate version + run: | + cmake -S . -B /tmp/build - name: Create tarball with submodules id: tar