|
6 | 6 |
|
7 | 7 | env: |
8 | 8 | s3bucket: bb-blueberry-sdk-releases |
9 | | - s3sdk_path: /releases/main/SDK |
| 9 | + s3sdk_path: releases/main/SDK |
| 10 | + s3artefact: opendaq-3.21.0-ubuntu22.04-x86_64_ffc93d2.deb |
10 | 11 |
|
11 | 12 | jobs: |
12 | 13 | build: |
13 | 14 | runs-on: ubuntu-latest |
14 | 15 | steps: |
15 | 16 |
|
16 | | - - name: Configuring |
17 | | - uses: aws-actions/configure-aws-credentials@v4 |
18 | | - with: |
19 | | - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} |
20 | | - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
21 | | - aws-region: ${{ secrets.AWS_REGION }} |
| 17 | + # - name: Configuring |
| 18 | + # uses: aws-actions/configure-aws-credentials@v4 |
| 19 | + # with: |
| 20 | + # aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} |
| 21 | + # aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
| 22 | + # aws-region: ${{ secrets.AWS_REGION }} |
22 | 23 |
|
23 | | - - name: Enumerate artifacts |
24 | | - run: | |
25 | | - echo "Available artifacts:" |
26 | | - aws s3 ls "s3://${{ env.s3bucket }}${{env.s3sdk_path}}" --human-readable |
| 24 | + # - name: Enumerate artifacts |
| 25 | + # run: | |
| 26 | + # echo "Available artifacts:" |
| 27 | + # aws s3 ls "s3://${{ env.s3bucket }}${{env.s3sdk_path}}" --human-readable |
| 28 | + |
| 29 | + - name: Download openDAQ framework |
| 30 | + uses: ./.github/actions/framework-download-s3 |
| 31 | + with: |
| 32 | + s3_bucket: ${{ env.s3bucket }} |
| 33 | + s3_path: ${{ env.s3sdk_path }} |
| 34 | + s3_artefact: ${{ env.s3artefact }} |
27 | 35 |
|
28 | | - - name: Download artifact |
29 | | - run: | |
30 | | - echo "Downloading to $(pwd)" |
31 | | - aws s3 cp "s3://${{ env.s3bucket }}${{env.s3sdk_path}}/opendaq-3.21.0-ubuntu22.04-x86_64_ffc93d2.deb" . |
| 36 | + # - name: Download artifact |
| 37 | + # run: | |
| 38 | + # echo "Downloading to $(pwd)" |
| 39 | + # aws s3 cp "s3://${{ env.s3bucket }}${{env.s3sdk_path}}/opendaq-3.21.0-ubuntu22.04-x86_64_ffc93d2.deb" . |
32 | 40 |
|
33 | 41 | - name: Uploadading artifact |
34 | 42 | uses: actions/upload-artifact@v4 |
|
0 commit comments