Skip to content

Commit

Permalink
Debug by splitting them into two steps
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Jan 9, 2025
1 parent 5ed4b10 commit 3774d0e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/cdn-upload-version-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ runs:
run: |
echo -e '${{ inputs.boards }}' >> boards.txt
- name: Upload artifacts to CDN
- name: Prepare Upload Folder
shell: bash
run: |
mkdir -p upload
mv boards.txt upload/
- name: Upload artifacts to CDN
shell: bash
run: |
sshpass -p "${{ inputs.bunny-stor-password }}" scp -v -r upload/* ${{ inputs.bunny-stor-username }}@${{ inputs.bunny-stor-hostname }}:/${{ inputs.fw-version }}/${{ inputs.board }}

0 comments on commit 3774d0e

Please sign in to comment.