Skip to content

Commit

Permalink
v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leonchen83 committed Feb 1, 2023
1 parent 2fff268 commit 19d22bb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,40 +49,40 @@ jobs:
asset_name: redis-rdb-cli-release.zip
asset_content_type: application/zip
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build and Push latest
id: latest
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest
- name: Build and Push ${{ env.RELEASE_TAG }}
id: tag
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:${{ env.RELEASE_TAG }}
- name: Build and Push latest-native
id: latest-native
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./DockerfileNative
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest-native
- name: Build and Push ${{ env.RELEASE_TAG }}-native
id: tag-native
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./DockerfileNative
Expand Down

0 comments on commit 19d22bb

Please sign in to comment.