Skip to content

Commit

Permalink
Merge pull request #32 from eth-cscs/rsarm-patch-1
Browse files Browse the repository at this point in the history
Add custom tag prompt for manual triggering of image building
  • Loading branch information
rsarm committed Aug 30, 2024
2 parents d1bd389 + f235a2d commit 65f3e2f
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: Build and Push Docker Image
on:
release:
types: [created]
workflow_dispatch: # Allows manual triggering
workflow_dispatch:
inputs:
custom_tag:
description: 'Custom tag for manual trigger'
required: false

jobs:
build-and-push:
Expand All @@ -17,15 +21,28 @@ jobs:
APP_VERSION=$(grep appVersion chart/Chart.yaml | cut -d ' ' -f 2 | tr -d '"')
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
- name: Determine release tag
run: |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
if [ -z "${{ github.event.inputs.custom_tag }}" ]; then
RELEASE_TAG="manual-trigger"
else
RELEASE_TAG="${{ github.event.inputs.custom_tag }}"
fi
else
RELEASE_TAG="${{ github.event.release.tag_name }}"
fi
echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Docker image
run: docker build -t ghcr.io/${{ github.repository_owner }}/f7t4jhub:${{ env.APP_VERSION }}-fcs${{ github.event.release.tag_name }} -f dockerfiles/Dockerfile .
- name: Build Docker image with combined tag
run: docker build -t ghcr.io/${{ github.repository_owner }}/f7t4jhub:${{ env.APP_VERSION }}-${{ env.RELEASE_TAG }} -f dockerfiles/Dockerfile .

- name: Push Docker image to GitHub Container Registry
run: docker push ghcr.io/${{ github.repository_owner }}/f7t4jhub:${{ env.APP_VERSION }}-fcs${{ github.event.release.tag_name }}
run: docker push ghcr.io/${{ github.repository_owner }}/f7t4jhub:${{ env.APP_VERSION }}-${{ env.RELEASE_TAG }}

0 comments on commit 65f3e2f

Please sign in to comment.