Skip to content

Commit e75af57

Browse files
authored
Merge pull request #6 from dhalbert/update-workflow
update workflows
2 parents 8b9c897 + d120f56 commit e75af57

File tree

3 files changed

+34
-41
lines changed

3 files changed

+34
-41
lines changed

.github/workflows/build.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,18 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- name: Dump GitHub context
10-
env:
11-
GITHUB_CONTEXT: ${{ toJson(github) }}
12-
run: echo "$GITHUB_CONTEXT"
13-
- name: Set up Python 3.6
14-
uses: actions/setup-python@v1
9+
- name: Set up Python 3.11
10+
uses: actions/setup-python@v4
1511
with:
16-
python-version: 3.6
12+
python-version: 3.11
1713
- name: Versions
1814
run: |
1915
python3 --version
20-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
2117
with:
2218
submodules: true
19+
- name: Fetch correct submodule shas
20+
run: git submodule foreach 'git fetch --tags --depth 1 origin $sha1 && git checkout -q $sha1'
2321
- name: Install deps
2422
run: |
2523
sudo apt-get install -y gettext gawk

.github/workflows/release.yml

+26-25
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,48 @@ jobs:
88
upload-release-assets:
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Dump GitHub context
12-
env:
13-
GITHUB_CONTEXT: ${{ toJson(github) }}
14-
run: echo "$GITHUB_CONTEXT"
1511
- name: Translate Repo Name For Build Tools filename_prefix
1612
id: repo-name
1713
run: |
18-
echo ::set-output name=repo-name::$(
14+
echo "repo-name=$(
1915
echo ${{ github.repository }} |
2016
awk -F '\/' '{ print tolower($2) }' |
2117
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
2521
with:
26-
python-version: 3.6
22+
python-version: 3.11
2723
- name: Versions
2824
run: |
2925
python3 --version
30-
- uses: actions/checkout@v1
26+
- uses: actions/checkout@v3
3127
with:
3228
submodules: true
29+
- name: Fetch correct submodule shas
30+
run: git submodule foreach 'git fetch --tags --depth 1 origin $sha1 && git checkout -q $sha1'
3331
- name: Install deps
3432
run: |
3533
sudo apt-get install -y gettext gawk
3634
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
3743
- 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 }}
3945
- 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-
#uses: actions/[email protected]
46-
uses: csexton/release-asset-action@master
46+
uses: shogo82148/actions-upload-release-asset@v1
4747
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"

build.sh

+2-8
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,8 @@ set -e
2828

2929
P=$(
3030
ls -RUx |
31-
gawk -F '\n' '{ match($1, /(drivers|helpers)\/(.+)\/(.+)\:/, arr) ; if (length(arr[0]) > 0 && match(arr[3], arr[2]) > 0) printf "%s, ", arr[3] }' |
31+
gawk -F '\n' '{ match($1, /(drivers|helpers)\/(.+)\/(.+):/, arr) ; if (length(arr[0]) > 0 && match(arr[3], arr[2]) > 0) printf "%s, ", arr[3] }' |
3232
gawk '{ trimmed = substr($0, 1, length($0) - 2) ; print "\"" trimmed "\"" }'
3333
)
3434

35-
if [ -z "$P" ]; then
36-
P=""
37-
else
38-
P="--package_folder_prefix $P"
39-
fi
40-
41-
circuitpython-build-bundles --filename_prefix circuitpython-org-bundle --library_location libraries --library_depth 2 $P
35+
circuitpython-build-bundles --filename_prefix circuitpython-org-bundle --library_location libraries --library_depth 2 --package_folder_prefix "$P"

0 commit comments

Comments
 (0)