Skip to content

Commit

Permalink
prepare wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcoding committed Oct 11, 2024
1 parent 2242ca0 commit d72dfcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
run: uv run pytest .

build-wheels:
name: Build wheels on ${{ matrix.os }}
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ${{ matrix.os }}
name: Build wheels
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
needs:
- test
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
needs:
- test
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

publish:
name: Publish wheels
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
needs:
- build-wheels
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "extapi"
version = "0.1.6"
version = "0.1.6b1"
description = "External API library"
authors = [
{ name = "KTS", email = "hello@kts.tech" }
Expand Down

0 comments on commit d72dfcf

Please sign in to comment.