From e9c35d7477c4ad8931da3de93fbe125cf7a38ade Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sun, 19 Dec 2021 00:07:13 -0500 Subject: [PATCH 1/2] add package_folder_prefix to include asyncio directory --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9516b8..c643c68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: run: | pre-commit run --all-files - name: Build assets - run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . + run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . --package_folder_prefix "adafruit_, asyncio" - name: Archive bundles uses: actions/upload-artifact@v2 with: From e35548b10bd602897f2b91c7ebc1d1a7c7b3f59a Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sun, 19 Dec 2021 00:08:42 -0500 Subject: [PATCH 2/2] add package_folder_prefix --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a91a375..1026686 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,7 +44,7 @@ jobs: run: | source actions-ci/install.sh - name: Build assets - run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . + run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . --package_folder_prefix "adafruit_, asyncio" - name: Upload Release Assets # the 'official' actions version does not yet support dynamically # supplying asset names to upload. @csexton's version chosen based on