@@ -177,7 +177,7 @@ jobs:
177
177
path : ${{ matrix.executable-path }}
178
178
179
179
- name : Make executable
180
- run : chmod +x ${{ matrix.executable-path }}arduino-create-agent*
180
+ run : chmod -v +x ${{ matrix.executable-path }}arduino-create-agent*
181
181
if : matrix.operating-system == 'ubuntu-latest' || matrix.operating-system == 'macOS-latest'
182
182
183
183
- name : Rename executable to Arduino_Create_Bridge
@@ -247,7 +247,7 @@ jobs:
247
247
path : ArduinoCreateAgent-osx
248
248
249
249
- name : Make executable
250
- run : chmod +x ArduinoCreateAgent-osx/ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.app/Contents/MacOS/*
250
+ run : chmod -v +x ArduinoCreateAgent-osx/ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.app/Contents/MacOS/*
251
251
252
252
- name : Import Code-Signing Certificates
253
253
uses : Apple-Actions/import-codesign-certs@v1
@@ -261,6 +261,7 @@ jobs:
261
261
run : |
262
262
brew tap mitchellh/gon
263
263
brew install mitchellh/gon/gon
264
+ brew install tree # debug
264
265
265
266
- name : Write gon config to file
266
267
# gon does not allow env variables in config file (https://github.com/mitchellh/gon/issues/20)
@@ -279,6 +280,11 @@ jobs:
279
280
}
280
281
EOF
281
282
283
+ - name : tree debug
284
+ run : |
285
+ tree
286
+ ls -lah ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.app/Contents/MacOS/*
287
+
282
288
- name : Code sign and notarize app
283
289
run : |
284
290
echo "gon will notarize executable in ArduinoCreateAgent-osx/ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.app"
@@ -287,9 +293,19 @@ jobs:
287
293
AC_USERNAME : ${{ secrets.AC_USERNAME }}
288
294
AC_PASSWORD : ${{ secrets.AC_PASSWORD }}
289
295
296
+ - name : tree debug
297
+ run : |
298
+ tree
299
+ ls -lah
300
+
290
301
- name : Tar files to keep permissions
291
302
run : tar -cvf ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.tar ArduinoCreateAgent-${GITHUB_REF##*/}-osx-installer-${{ matrix.browser }}.dmg
292
303
304
+ - name : tree debug
305
+ run : |
306
+ tree
307
+ ls -lah
308
+
293
309
- name : Upload artifacts
294
310
uses : actions/upload-artifact@v2
295
311
with :
0 commit comments