Skip to content

Commit

Permalink
Add on:workflow_dispatch to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuhlich committed Aug 9, 2024
1 parent 45d06fd commit e361552
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [published]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest
Expand All @@ -23,10 +26,12 @@ jobs:
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
push: true
tags: labsyspharm/quantification:${{ github.event.release.tag_name }}
build-args: |
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
tags: labsyspharm/quantification:${{ github.event.release.tag_name || github.ref_name }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit e361552

Please sign in to comment.