GH CD: Seriously ? https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
--- 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