Skip to content

Commit

Permalink
fix: improve docker push workflow (#4465)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent authored Aug 22, 2024
1 parent f8e2275 commit 91a6b3e
Showing 1 changed file with 17 additions and 24 deletions.
41 changes: 17 additions & 24 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,36 @@ on:
push:
branches:
- 3.x
# Build and push Docker images *only* for releases.
release:
types: [published] # , created, edited
types: [published]

jobs:
push_to_registry:
name: Build and push Docker image to Docker Hub
runs-on: ubuntu-22.04

steps:
- name: Check out the repo with latest code
- name: Check out the repo with the latest code
uses: actions/checkout@v4
- name: Push latest to Docker Hub
uses: docker/build-push-action@v6 # Info: https://github.com/docker/build-push-action/tree/releases/v1#tags

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: ${{ secrets.DOCKERHUB_REPOSITORY }}
tag_with_ref: true # Info: https://github.com/docker/build-push-action/tree/releases/v1#tag_with_ref
tag_with_sha: true # Info: https://github.com/docker/build-push-action/tree/releases/v1#tag_with_sha
tags: latest

- name: 'Get the current tag'
- name: Get the current tag
id: currentTag
uses: actions/checkout@v4
- run: git fetch --prune --unshallow && TAG=$(git describe --tags --abbrev=0) && echo $TAG && echo "TAG="$TAG >> "$GITHUB_ENV"
- name: Check out the repo with tag
uses: actions/checkout@v4
with:
ref: ${{ env.TAG }}
run: echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV

- name: Push current tag to Docker Hub
uses: docker/build-push-action@v6 # Info: https://github.com/docker/build-push-action/tree/releases/v1#tags
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: ${{ secrets.DOCKERHUB_REPOSITORY }}
tag_with_ref: true # Info: https://github.com/docker/build-push-action/tree/releases/v1#tag_with_ref
tag_with_sha: true # Info: https://github.com/docker/build-push-action/tree/releases/v1#tag_with_sha
tags: ${{ env.TAG }}
context: .
push: true
tags: |
${{ secrets.DOCKERHUB_REPOSITORY }}:latest
${{ secrets.DOCKERHUB_REPOSITORY }}:${{ env.TAG }}

0 comments on commit 91a6b3e

Please sign in to comment.