Skip to content

Commit 47f5b29

Browse files
committed
CI: Change compression method in workflow
Change compression type for ncs package from 7z to tar Signed-off-by: Jakub Ciesla <[email protected]>
1 parent a1c59ff commit 47f5b29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/src-mirror.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
git config --global pack.windowMemory "32m" &&
2222
west forall -c 'git gc --prune --aggressive'
2323
24-
- name: Create 7z archive
24+
- name: Create tar archive
2525
run: |
26-
7z a -t7z src.7z ./workspace/
26+
tar -C ./workspace -czvf src.tar.gz .
2727
2828
- name: Set up JFrog CLI
2929
uses: jfrog/setup-jfrog-cli@v4
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
ARTIFACTORY_URL: https://eu.files.nordicsemi.com/artifactory
3434
REPOSITORY: ncs-src-mirror
35-
FILE_PATH: src.7z
35+
FILE_PATH: src.tar.gz
3636
TARGET_PATH: external/${{ github.ref_name }}/
3737
run: >
3838
jfrog rt u $FILE_PATH $REPOSITORY/$TARGET_PATH

0 commit comments

Comments
 (0)