From 4158f6075e37acacb735cc2cf2bfe7e31da5d6d5 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 9 Nov 2023 09:32:26 +0000 Subject: [PATCH] Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/build_debian.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_debian.yaml b/.github/workflows/build_debian.yaml index ccb16a638cf..7ab28ff7ca3 100644 --- a/.github/workflows/build_debian.yaml +++ b/.github/workflows/build_debian.yaml @@ -32,11 +32,11 @@ jobs: - name: Prepare run: | mkdir -p debian/tmp/DEBIAN - find debian -type f -exec cp "{}" debian/tmp/DEBIAN/ \; + find debian -maxdepth 1 -type f -exec cp "{}" debian/tmp/DEBIAN/ \; mkdir -p debian/tmp/usr/share/element-web/ tar -xf "element-$VERSION.tar.gz" -C debian/tmp/usr/share/element-web --strip-components=1 --no-same-owner --no-same-permissions - cp config.sample.json debian/tmp/usr/share/element-web/config.json + mv debian/tmp/usr/share/element-web/config{.sample,}.json - name: Write changelog run: |