Skip to content

Commit f60c42e

Browse files
Merge pull request #262 from skyflowapi/release/26.5.1
fix: checkout and push to v1 branch in public release workflow
2 parents 3b7cdd7 + d0013ee commit f60c42e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
with:
1818
token: ${{ secrets.PAT_ACTIONS }}
19-
ref: main
19+
ref: v1
2020
fetch-depth: 0
2121
- uses: actions/setup-python@v5
2222
- name: Install dependencies
@@ -42,7 +42,7 @@ jobs:
4242
git add setup.py
4343
git add skyflow/version.py
4444
git commit -m "[AUTOMATED] Public Release - ${{ steps.previoustag.outputs.tag }}"
45-
git push origin
45+
git push origin HEAD:v1
4646
4747
- name: Build and publish
4848
env:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
if sys.version_info < (3, 7):
88
raise RuntimeError("skyflow requires Python 3.7+")
9-
current_version = '1.16.1.dev0+eec539e'
9+
current_version = '2.1.1.dev0+67ee0bb'
1010

1111
setup(
1212
name='skyflow',

skyflow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SDK_VERSION = '1.16.1'
1+
SDK_VERSION = '2.1.1.dev0+67ee0bb'

0 commit comments

Comments
 (0)