From a3d69d800b423ffd2fa61ccf935a81bd38210e8b Mon Sep 17 00:00:00 2001 From: NordicBuilder Date: Wed, 20 Mar 2024 15:26:42 +0100 Subject: [PATCH] sadf --- .github/workflows/zip-upload.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/zip-upload.yml b/.github/workflows/zip-upload.yml index 841b1ed31d..2655ab72c0 100644 --- a/.github/workflows/zip-upload.yml +++ b/.github/workflows/zip-upload.yml @@ -32,15 +32,11 @@ jobs: run: west update - name: Create tar.gz - run: > - cd .. && - tar --exclude=".git" --exclude="*.tar.gz" -czf - sdk-repository-${{ github.ref_name }}.tar.gz sdk-nrf + run: | + cd .. + tar --exclude=".git" --exclude="*.tar.gz" -czf sdk-repository-${{ github.ref_name }}.tar.gz sdk-nrf - name: Upload to Artifactory - run: > - cd .. && - curl -u ${{ secrets.ARTIFACTORY_BURAN_CI_TOKEN }} -T - sdk-repository-${{ github.ref_name }}.tar.gz - https://eu.files.nordicsemi.com/artifactory/ncs-src-mirror/ - ${{ github.ref_name }}/sdk-repository-${{ github.ref_name }}.tar.gz \ No newline at end of file + run: | + cd .. + curl -u ${{ secrets.ARTIFACTORY_BURAN_CI_TOKEN }} -T sdk-repository-${{ github.ref_name }}.tar.gz https://eu.files.nordicsemi.com/artifactory/ncs-src-mirror/${{ github.ref_name }}/sdk-repository-${{ github.ref_name }}.tar.gz