summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-01-28 11:27:45 +0100
committerGitHub <[email protected]>2026-01-28 11:27:45 +0100
commitcfece77a4475f2792b49b47c3d75d895d127d12a (patch)
tree4216c0aa4b7e70673b733fb2e8f4f5c65dbc35e5 /.github/workflows
parent909bd7ba67b11ff18d0eb88b837fb9a98436b8e1 (diff)
parent034677b0c5bf9b37c22a6d2d52f8761c2364857d (diff)
downloadeom-dependabot/github_actions/actions/checkout-6.tar.bz2
eom-dependabot/github_actions/actions/checkout-6.tar.xz
Merge branch 'master' into dependabot/github_actions/actions/checkout-6dependabot/github_actions/actions/checkout-6
Diffstat (limited to '.github/workflows')
-rwxr-xr-x.github/workflows/builds.sh2
-rw-r--r--.github/workflows/release.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/builds.sh b/.github/workflows/builds.sh
index c80e76a..ee3ed8b 100755
--- a/.github/workflows/builds.sh
+++ b/.github/workflows/builds.sh
@@ -19,7 +19,7 @@ infoend() {
if [[ -f meson.build && $1 == "meson" ]]; then
infobegin "Configure (meson)"
- meson setup _build --prefix=/usr
+ meson setup _build -Dprefix=/usr -Dgdk-pixbuf-thumbnailer=false
infoend
infobegin "Build (meson)"
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2ee34c1..87b9255 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -21,7 +21,7 @@ jobs:
run: sudo .github/workflows/ubuntu.sh
- name: Build the source code
- run: .github/workflows/builds.sh meson
+ run: .github/workflows/builds.sh autotools
- name: Install GH CLI
uses: dev-hanz-ops/[email protected]
@@ -30,6 +30,6 @@ jobs:
- name: Create github release
run: |
- gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --generate-notes _build/meson-dist/*
+ gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --generate-notes eom*.tar.xz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}