Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
blythed committed Nov 2, 2024
1 parent 2ff7473 commit f270fa8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
id: setup
run: |
if [[ "${{ github.base_ref }}" == "main" ]]; then
echo "mode=changed"
echo "mode=changed" >> $GITHUB_ENV
else
echo "mode=all"
echo "mode=all" >> $GITHUB_ENV
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release in Pypi/DockerHub
name: Release on PyPi
on:
push:
branches:
- release-[0-9]+.[0-9]+.[0-9]+
- '^[0-9]+.[0-9]+$'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.0.dev
2 changes: 1 addition & 1 deletion superduper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

logging = logger.Logging

__version__ = '0.4.0'
__version__ = '0.4.0.dev'


from .base.decorators import code
Expand Down

0 comments on commit f270fa8

Please sign in to comment.