Skip to content

Commit

Permalink
Merge pull request #404 from malthe/build-packages
Browse files Browse the repository at this point in the history
Build packages
  • Loading branch information
malthe authored Dec 24, 2023
2 parents db6186c + 6863e56 commit 2e91a66
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml → .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ on:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: python setup.py sdist
- run: |
rm -rf src/chameleon/tests
python setup.py bdist_wheel
- uses: actions/upload-artifact@v4
with:
name: Chameleon
path: ./dist/
test:
strategy:
# We want to see all failures:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '4.4.2'
__version__ = '4.4.3-dev'

import os

Expand Down

0 comments on commit 2e91a66

Please sign in to comment.