# HG changeset patch
# User Edouard Tisserant <edouard.tisserant@gmail.com>
# Date 1660488883 -7200
# Node ID 4dd65c75e65168ddf392b7d8e16c3ea3084c5f6a
# Parent  52b64ebc19706e9d769ca67613cf5bb57f45d4de
GH CD: Seriously ? https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files

diff -r 52b64ebc1970 -r 4dd65c75e651 .github/workflows/build_bundles.yml
--- a/.github/workflows/build_bundles.yml	Sun Aug 14 15:11:20 2022 +0200
+++ b/.github/workflows/build_bundles.yml	Sun Aug 14 16:54:43 2022 +0200
@@ -22,7 +22,9 @@
       uses: actions/download-artifact@v3
       with:
         name: source_package
-        path: build
+
+    - name: untar files
+      run: tar -xvf build.tar
 
     - name: Cache docker image
       id: cache-docker
diff -r 52b64ebc1970 -r 4dd65c75e651 .github/workflows/build_snap.yml
--- a/.github/workflows/build_snap.yml	Sun Aug 14 15:11:20 2022 +0200
+++ b/.github/workflows/build_snap.yml	Sun Aug 14 16:54:43 2022 +0200
@@ -24,7 +24,9 @@
       uses: actions/download-artifact@v3
       with:
         name: source_package
-        path: build
+
+    - name: untar files
+      run: tar -xvf build.tar
 
     - name: Move snap dir in build/sources
       run: |
diff -r 52b64ebc1970 -r 4dd65c75e651 .github/workflows/prep_sources.yml
--- a/.github/workflows/prep_sources.yml	Sun Aug 14 15:11:20 2022 +0200
+++ b/.github/workflows/prep_sources.yml	Sun Aug 14 16:54:43 2022 +0200
@@ -70,8 +70,11 @@
         open62541 ${{ env.open62541_revisionid }}
         EOF
 
+    - name: Tar files
+      run: tar -cvf build.tar build
+
     - name: Upload source artifact
       uses: actions/upload-artifact@v3
       with:
         name: source_package
-        path: build
+        path: build.tar