GH CD: Seriously ? https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
authorEdouard Tisserant <edouard.tisserant@gmail.com>
Sun, 14 Aug 2022 16:54:43 +0200
changeset 97 4dd65c75e651
parent 96 52b64ebc1970
child 98 54c0e2662dd3
GH CD: Seriously ? https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
.github/workflows/build_bundles.yml
.github/workflows/build_snap.yml
.github/workflows/prep_sources.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
--- 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: |
--- 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