Skip to content

Commit

Permalink
maybe fix docker manual dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Dec 20, 2024
1 parent 086d0c7 commit 48e51ba
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,30 @@ jobs:
REPO_NAME=${{ env.IMAGE_NAME }}
echo "LOWER_CASE_REPO_NAME=${REPO_NAME,,}" >> $GITHUB_ENV
- name: Get release version
id: get_release_version
- name: Get release version or branch name
id: get_version_or_branch
run: |
RELEASE_VERSION=${{ github.event.release.tag_name }}
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
if [ "${{ github.event_name }}" == "release" ]; then
RELEASE_VERSION=${{ github.event.release.tag_name }}
if [ -z "$RELEASE_VERSION" ]; then
echo "RELEASE_VERSION is empty. Please ensure a release tag is provided."
exit 1
fi
echo "VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
elif [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
BRANCH_NAME=${{ github.ref_name }}
echo "VERSION=${BRANCH_NAME}" >> $GITHUB_ENV
else
echo "Unsupported event: ${{ github.event_name }}"
exit 1
fi
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ env.REGISTRY }}/${{ env.LOWER_CASE_REPO_NAME }}:${{ env.RELEASE_VERSION }}, ${{ steps.meta.outputs.tags }}
tags: ${{ env.REGISTRY }}/${{ env.LOWER_CASE_REPO_NAME }}:${{ env.VERSION }}, ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 48e51ba

Please sign in to comment.