Skip to content

Commit b5eed2e

Browse files
committed
test
1 parent 64a8a5c commit b5eed2e

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,13 @@ jobs:
4242
extras/package_full.sh
4343
ls
4444
ls ../
45+
echo $GITHUB_WORKSPACE
4546
4647
- name: Save artifacts
4748
uses: actions/upload-artifact@v4
4849
with:
4950
name: $REPOSITORY_NAME*.tar.bz2
50-
path: ../
51+
path: $GITHUB_WORKSPACE/../
5152

5253
- name: Get architecture name
5354
run: |

extras/package_full.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ export VERSION="4.4.1"
33

44
FLAVOURS=`find ./extras/variables/*.variables`
55

6-
for flavour in $FLAVOURS; do
6+
#for flavour in $FLAVOURS; do
77

88
# Hack, clean everything from known positions and restart
99
rm -rf /tmp/mbed-os-program
1010
git reset --hard
1111
git clean -dxf
1212

1313
# Clone ArduinoCore-api in parent folder and create symlinks
14-
git clone https://github.com/arduino/ArduinoCore-API.git ../api/
14+
git clone --depth=1 https://github.com/arduino/ArduinoCore-API.git ../api/
1515
ln -s ../../../api/api cores/arduino/api
16-
./extras/package.sh $flavour
16+
#./extras/package.sh $flavour
17+
./extras/package.sh ./extras/variables/edge.variables
1718

18-
done
19+
#done

0 commit comments

Comments
 (0)