From 606f4b07940fe66d072e3dbe899c4ba13e057a99 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 22 Jun 2022 13:09:37 -0700 Subject: [PATCH] Fix release action --- .github/workflows/release.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f548aec2..f58937b4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: jobs: meson-rl: - name: "Build and release Hyprland with Meson (Arch)" + name: "Release Hyprland with Meson (Arch)" runs-on: ubuntu-latest container: image: archlinux @@ -27,10 +27,6 @@ jobs: -Ddefault_library=static - name: Compile run: ninja -C obj-x86_64-pc-linux-gnu - - name: Build wlroots - run: | - sed -i '$ d' ./Makefile - make config - name: Compress and package artifacts run: | mkdir x86_64-pc-linux-gnu @@ -39,11 +35,10 @@ jobs: mkdir release-files/assets DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime cp ./LICENSE release-files/ - cp subprojects/wlroots/build/libwlroots.so.11032 release-files/ cp x86_64-pc-linux-gnu/usr/local/bin/* release-files/ cp -r example/ release-files/ cp -r assets/ release-files/ - tar -cvf Hyprland.tar.xz -C release-files + tar -cvf Hyprland.tar.xz release-files - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')