Skip to content

Commit 04e4ec2

Browse files
committed
Fixed docker build step for releases
1 parent 50f44fa commit 04e4ec2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build-job.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ jobs:
4141
username: ${{ secrets.DOCKERHUB_USERNAME }}
4242
password: ${{ secrets.DOCKERHUB_PASSWORD }}
4343

44-
# Build Apache httpd images
45-
- name: Build and push experimental image
46-
if: github.event_name == 'push'
44+
# See https://github.com/docker/build-push-action
45+
- name: Build and push image
4746
uses: docker/build-push-action@v2
4847
with:
4948
file: ${{ inputs.dockerfile }}

.github/workflows/build-release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
types:
1010
- published
1111

12+
workflow_dispatch:
13+
1214
jobs:
1315
parse_release_tag:
1416
if: github.event_name == 'release'

0 commit comments

Comments
 (0)