Skip to content

Commit

Permalink
sadf
Browse files Browse the repository at this point in the history
  • Loading branch information
jaci-nordic committed Mar 20, 2024
1 parent 12afeb1 commit a3d69d8
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/zip-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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

0 comments on commit a3d69d8

Please sign in to comment.