We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7176c66 commit 855181eCopy full SHA for 855181e
1 file changed
.github/workflows/cont_int.yml
@@ -101,20 +101,23 @@ jobs:
101
102
- name: Check if arc_bundle.tar.gz exists
103
run: |
104
- if [ ! -f ../arc_bundle.tar.gz ]; then
+ if [ ! -f arc_bundle.tar.gz ]; then
105
echo "❌ Error: arc_bundle.tar.gz not found!"
106
- ls -la ..
+ ls -la
107
exit 1
108
else
109
echo "✅ arc_bundle.tar.gz found:"
110
- ls -lh ../arc_bundle.tar.gz
+ ls -lh arc_bundle.tar.gz
111
fi
112
113
+ - name: Move archive into current directory
114
+ run: cp ../arc_bundle.tar.gz .
115
+
116
- name: Upload environment bundle
117
uses: actions/upload-artifact@v4
118
with:
119
name: arc-ci-bundle
- path: ../arc_bundle.tar.gz
120
+ path: arc_bundle.tar.gz
121
122
unit-test:
123
name: Run Unit Tests
0 commit comments