aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorThatOneCalculator <[email protected]>2022-06-22 13:09:37 -0700
committerThatOneCalculator <[email protected]>2022-06-22 13:09:37 -0700
commit606f4b07940fe66d072e3dbe899c4ba13e057a99 (patch)
tree287b87e84cf424c630dd4ebd261b4112e7c1b4b7 /.github
parentff6e3a4d24cad1442ce7ffc82ba947508bd7ed19 (diff)
downloadHyprland-606f4b07940fe66d072e3dbe899c4ba13e057a99.tar.gz
Hyprland-606f4b07940fe66d072e3dbe899c4ba13e057a99.zip
Fix release action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml9
1 files 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/')