We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923504d commit de24f87Copy full SHA for de24f87
.github/workflows/docker-publish.yml
@@ -12,13 +12,15 @@ jobs:
12
- name: Extract version
13
id: get_version
14
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
15
- - name: Push to Docker Hub
16
- uses: docker/build-push-action@v1
+ - name: Login to Docker Hub
+ uses: docker/login-action@v3
17
with:
18
username: ${{ secrets.DOCKER_USERNAME }}
19
password: ${{ secrets.DOCKER_SECRET_AREKKAS }}
20
- repository: oryd/sdk
+ - name: Push to Docker Hub
21
+ uses: docker/build-push-action@v5
22
+ with:
23
push: true
24
tags: |
25
oryd/sdk:${{ env.VERSION }}
- oryd/sdk:latest
26
+ oryd/sdk:latest
0 commit comments