Skip to content

Commit de24f87

Browse files
committed
ci: upgrade push action
1 parent 923504d commit de24f87

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
- name: Extract version
1313
id: get_version
1414
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
15-
- name: Push to Docker Hub
16-
uses: docker/build-push-action@v1
15+
- name: Login to Docker Hub
16+
uses: docker/login-action@v3
1717
with:
1818
username: ${{ secrets.DOCKER_USERNAME }}
1919
password: ${{ secrets.DOCKER_SECRET_AREKKAS }}
20-
repository: oryd/sdk
20+
- name: Push to Docker Hub
21+
uses: docker/build-push-action@v5
22+
with:
2123
push: true
2224
tags: |
2325
oryd/sdk:${{ env.VERSION }}
24-
oryd/sdk:latest
26+
oryd/sdk:latest

0 commit comments

Comments
 (0)