Skip to content

Commit

Permalink
Updated versions in the manual build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
almazgimaev authored Jun 20, 2024
1 parent d27ceca commit 716dffb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/manual-build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
swap-storage: true
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
-
name: Tag Version
run: echo ${{ github.event.inputs.tag_version }}
Expand All @@ -35,20 +35,20 @@ jobs:
run: echo "LABEL_VERSION=${{ github.event.inputs.tag_version }}" >> $GITHUB_ENV
-
name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME_COMMUNITY }}
password: ${{ secrets.DOCKER_TOKEN_COMMUNITY }}
-
name: Login to Docker Supervisely Enterprise
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_ENTERPRISE_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME_ENTERPRISE }}
password: ${{ secrets.DOCKER_PASSWORD_ENTERPRISE }}
-
name: Login to Docker Supervisely Developer
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_DEVELOPER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME_DEVELOPER }}
Expand All @@ -58,12 +58,12 @@ jobs:
run: python .github/workflows/docker_labels.py
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
with:
version: v0.9.1
-
name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./
file: ./Dockerfile
Expand Down

0 comments on commit 716dffb

Please sign in to comment.