Skip to content

fixup! WorkFlows: Pack and Send repository #12

fixup! WorkFlows: Pack and Send repository

fixup! WorkFlows: Pack and Send repository #12

Workflow file for this run

name: Zip and Send
# on:
# push:
# tags:
# - '*'
on:
push:
branches:
- zipAndSend
jobs:
zip-and-upload:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install West
run: pip install west
# - name: West Update
# run: |
# west init -l .
# west update
#
- name: Zip repository
run: zip -r sdk-repository-${{ github.sha }}.zip . -x "*.git*"
- name: Upload to Artifactory
run: |
curl -u ${{ secrets.ARTIFACTORY_BURAN_CI_TOKEN }} -T sdk-repository-${{ github.sha }}.zip "https://eu.files.nordicsemi.com/artifactory/ncs-source-mirror/sdk-repository-${{ github.sha }}.zip"