]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - .github/workflows/release.yml
Revert back to using setup.py to fix install problems
[Adafruit_Blinka-hackapet.git] / .github / workflows / release.yml
index a3cedce02ca7bcd9a14069e9dc92b816d6399107..ab6669f21d74c949592de1beff72b744895bd55b 100644 (file)
@@ -2,11 +2,9 @@
 #
 # SPDX-License-Identifier: Unlicense
 name: Release Actions
 #
 # SPDX-License-Identifier: Unlicense
 name: Release Actions
-
 on:
   release:
     types: [published]
 on:
   release:
     types: [published]
-
 jobs:
   upload-pypi:
     runs-on: ubuntu-latest
 jobs:
   upload-pypi:
     runs-on: ubuntu-latest
@@ -35,5 +33,5 @@ jobs:
         for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
             sed -i -e "s/0.0.0+auto.0/${{github.event.release.tag_name}}/" $file;
         done;
         for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
             sed -i -e "s/0.0.0+auto.0/${{github.event.release.tag_name}}/" $file;
         done;
-        python -m build -s
-        twine upload dist/*
+        python -m build
+        twine upload dist/*
\ No newline at end of file