We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d16ac commit d833c16Copy full SHA for d833c16
1 file changed
.github/workflows/release.yml
@@ -43,6 +43,11 @@ jobs:
43
- name: Install deps
44
run: |
45
source actions-ci/install.sh
46
+ - name: Populate __version__
47
+ run: |
48
+ for file in $(find -not -path "./.*" -not -path "./docs*" -name "*.py" ); do
49
+ sed -i -e "s/0.0.0-auto.0/${{github.event.release.tag_name}}/" $file;
50
+ done;
51
- name: Build assets
52
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
53
- name: Upload Release Assets
0 commit comments