Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwdevantier committed Jun 6, 2022
1 parent 10d4f08 commit 37cec8d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
- name: Build
run: |
python setup.py build
# - name: Build and upload wheel
# if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
# run: |
# echo "Building wheel and uploading"
# pip install wheel twine
# python setup.py sdist bdist_wheel
# echo "Uploading source code"
# python -m twine upload --verbose --non-interactive --skip-existing -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*
- name: Build and upload wheel
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
run: |
echo "Building wheel and uploading"
pip install wheel twine
python setup.py sdist bdist_wheel
echo "Uploading source code"
python -m twine upload --verbose --non-interactive --skip-existing -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Codegen Documentation
gcgen Documentation
===================================
Codegen aims to provide a minimal, yet useful tool to aid with code generation,
gcgen aims to provide a minimal, yet useful tool to aid with code generation,
predominantly by allowing you to weave snippets of generated code in among
otherwise hand-written code, though generating entire files from scratch
is also supported.

Codegen is written for ease of use, thus it:
gcgen is written for ease of use, thus it:

* Enables active code-generation
* Allows generated code to be mixed in among hand-written code
Expand Down

0 comments on commit 37cec8d

Please sign in to comment.