Skip to content

Commit 855181e

Browse files
committed
CI
1 parent 7176c66 commit 855181e

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/cont_int.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,20 +101,23 @@ jobs:
101101
102102
- name: Check if arc_bundle.tar.gz exists
103103
run: |
104-
if [ ! -f ../arc_bundle.tar.gz ]; then
104+
if [ ! -f arc_bundle.tar.gz ]; then
105105
echo "❌ Error: arc_bundle.tar.gz not found!"
106-
ls -la ..
106+
ls -la
107107
exit 1
108108
else
109109
echo "✅ arc_bundle.tar.gz found:"
110-
ls -lh ../arc_bundle.tar.gz
110+
ls -lh arc_bundle.tar.gz
111111
fi
112112
113+
- name: Move archive into current directory
114+
run: cp ../arc_bundle.tar.gz .
115+
113116
- name: Upload environment bundle
114117
uses: actions/upload-artifact@v4
115118
with:
116119
name: arc-ci-bundle
117-
path: ../arc_bundle.tar.gz
120+
path: arc_bundle.tar.gz
118121

119122
unit-test:
120123
name: Run Unit Tests

0 commit comments

Comments
 (0)