Skip to content

Commit

Permalink
Disable release workflow
Browse files Browse the repository at this point in the history
wpaperd now links to libGL, libEGL and libwayland-client.
This means that it depends on the system libraries (we don't want to
ship the libs ourself) and we cannot provide a tarball.
  • Loading branch information
danyspin97 committed Apr 17, 2024
1 parent 004e65c commit 6644ed7
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
tags:
- '*.*.*'
#on:
# push:
# tags:
# - '*.*.*'

name: Release

Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64-unknown-linux-musl]
target: [x86_64-unknown-linux-gnu]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
Expand All @@ -38,7 +38,6 @@ jobs:
strip target/${{ matrix.target }}/release/wpaperctl
- name: Create tarball
run: |
touch .tarball
cp target/${{ matrix.target }}/release/wpaperd wpaperd
cp target/${{ matrix.target }}/release/wpaperctl wpaperctl
tar -cvf wpaperd-${{ matrix.target }}.tar.zst \
Expand All @@ -47,8 +46,7 @@ jobs:
man/wpaperd-output.5 \
README.md \
LICENSE.md \
install.yml \
.tarball
install.yml
- name: Upload release tarball
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 6644ed7

Please sign in to comment.