|
8 | 8 | upload-release-assets:
|
9 | 9 | runs-on: ubuntu-latest
|
10 | 10 | steps:
|
11 |
| - - name: Dump GitHub context |
12 |
| - env: |
13 |
| - GITHUB_CONTEXT: ${{ toJson(github) }} |
14 |
| - run: echo "$GITHUB_CONTEXT" |
15 | 11 | - name: Translate Repo Name For Build Tools filename_prefix
|
16 | 12 | id: repo-name
|
17 | 13 | run: |
|
18 |
| - echo ::set-output name=repo-name::$( |
| 14 | + echo "repo-name=$( |
19 | 15 | echo ${{ github.repository }} |
|
20 | 16 | awk -F '\/' '{ print tolower($2) }' |
|
21 | 17 | tr '_' '-'
|
22 |
| - ) |
23 |
| - - name: Set up Python 3.6 |
24 |
| - uses: actions/setup-python@v1 |
| 18 | + )" >> $GITHUB_OUTPUT |
| 19 | + - name: Set up Python 3.11 |
| 20 | + uses: actions/setup-python@v4 |
25 | 21 | with:
|
26 |
| - python-version: 3.6 |
| 22 | + python-version: 3.11 |
27 | 23 | - name: Versions
|
28 | 24 | run: |
|
29 | 25 | python3 --version
|
30 |
| - - uses: actions/checkout@v1 |
| 26 | + - uses: actions/checkout@v3 |
31 | 27 | with:
|
32 | 28 | submodules: true
|
| 29 | + - name: Fetch correct submodule shas |
| 30 | + run: git submodule foreach 'git fetch --tags --depth 1 origin $sha1 && git checkout -q $sha1' |
33 | 31 | - name: Install deps
|
34 | 32 | run: |
|
35 | 33 | sudo apt-get install -y gettext gawk
|
36 | 34 | pip install -r requirements.txt
|
| 35 | + - name: Package Folder Prefix For circuitpython-build-tools (Community Bundle Specific) |
| 36 | + id: pkg-folder |
| 37 | + run: | |
| 38 | + echo prefix=$( |
| 39 | + ls -RUx | |
| 40 | + gawk -F '\n' '{ match($1, /(drivers|helpers)\/(.+)\/(.+)\:/, arr) ; if (length(arr[0]) > 0 && match(arr[3], arr[2]) > 0) printf "%s, ", arr[3] }' | |
| 41 | + gawk '{ trimmed = substr($0, 1, length($0) - 2) ; print "\"" trimmed "\"" }' |
| 42 | + ) >> $GITHUB_OUTPUT |
37 | 43 | - name: Build assets
|
38 |
| - run: ./build.sh |
| 44 | + run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location libraries --library_depth 2 --package_folder_prefix ${{ steps.pkg-folder.outputs.prefix }} |
39 | 45 | - name: Upload Release Assets
|
40 |
| - # the 'official' actions version does not yet support dynamically |
41 |
| - # supplying asset names to upload. @csexton's version chosen based on |
42 |
| - # discussion in the issue below, as its the simplest to implement and |
43 |
| - # allows for selecting files with a pattern. |
44 |
| - # https://github.com/actions/upload-release-asset/issues/4 |
45 |
| - |
46 |
| - uses: csexton/release-asset-action@master |
| 46 | + uses: shogo82148/actions-upload-release-asset@v1 |
47 | 47 | with:
|
48 |
| - pattern: "bundles/*" |
49 |
| - github-token: ${{ secrets.GITHUB_TOKEN }} |
50 |
| -# - name: Upload Assets To AWS S3 |
51 |
| -# env: |
52 |
| -# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} |
53 |
| -# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
54 |
| -# run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bundles/ s3://adafruit-circuit-python/bundles/community --recursive --no-progress --region us-east-1" |
| 48 | + asset_path: "bundles/*" |
| 49 | + github_token: ${{ secrets.GITHUB_TOKEN }} |
| 50 | + upload_url: ${{ github.event.release.upload_url }} |
| 51 | + - name: Upload Assets To AWS S3 |
| 52 | + env: |
| 53 | + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} |
| 54 | + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
| 55 | + run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bundles/ s3://adafruit-circuit-python/bundles/community --recursive --no-progress --region us-east-1" |
0 commit comments