Skip to content

Commit

Permalink
Added open PR filter
Browse files Browse the repository at this point in the history
  • Loading branch information
DNYFZR committed Mar 1, 2024
1 parent 574ad47 commit f9d3bde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ jobs:
run: python -m build --wheel

# Artifacts
- name: Get Current Pull Request
id: pr-check
uses: 8BitJonny/[email protected]

- name: Extract version
id: get_version
run: |
Expand All @@ -97,7 +101,7 @@ jobs:
echo "current build : $VERSION"
- name: Create release
if: ${{ github.event_name }} != "pull_request"
if: ${{ steps.pr-check.outputs.number }} != 'null'
uses: ncipollo/[email protected]
with:
tag: "${{ steps.get_version.outputs.version }}"
Expand Down
2 changes: 1 addition & 1 deletion yoyo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os, duckdb, polars as pl

__status__ = "alpha"
__version__ = "0.1.3"
__version__ = "0.1.4"

class YoYo:
"""
Expand Down

0 comments on commit f9d3bde

Please sign in to comment.