Skip to content

Commit a684f5f

Browse files
committed
Version bump
1 parent a51550c commit a684f5f

File tree

2 files changed

+24
-11
lines changed

2 files changed

+24
-11
lines changed

.github/workflows/pre_release.yml

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
1-
name: Release
1+
name: Prerelease
22

33
on:
44
release:
55
types: [prereleased]
66

77
jobs:
8-
deploy:
8+
dockerhub-release:
99
runs-on: ubuntu-20.04
10-
steps:
11-
- uses: actions/checkout@v2
12-
- name: Push Docker image to Docker Hub
10+
-
11+
name: Set up QEMU
12+
uses: docker/setup-qemu-action@v1
13+
-
14+
name: Set up Docker Buildx
15+
uses: docker/setup-buildx-action@v1
16+
-
17+
name: Login to DockerHub
18+
uses: docker/login-action@v1
19+
with:
20+
username: ${{ secrets.DOCKER_USERNAME }}
21+
password: ${{ secrets.DOCKER_TOKEN }}
22+
-
23+
name: Build and push
24+
id: docker_build
1325
uses: docker/build-push-action@v2
1426
with:
15-
build-args: PIP_FLAGS="--pre"
1627
push: true
17-
username: ${{ secrets.DOCKER_USERNAME }}
18-
password: ${{ secrets.DOCKER_PASSWORD }}
19-
repository: superannotate/pythonsdk
20-
tag_with_ref: true
28+
tags: superannotate/pythonsdk:dev
29+
build-args: PIP_FLAGS="--pre"
30+
deploy:
31+
runs-on: ubuntu-20.04
32+
steps:
33+
- uses: actions/checkout@v2
2134
- name: Set up Python
2235
uses: actions/setup-python@v2
2336
with:

superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.0b4"
1+
__version__ = "3.0.0b5"

0 commit comments

Comments
 (0)