Skip to content

Commit

Permalink
Merge pull request #614 from KomodoPlatform/workflow-dispatch
Browse files Browse the repository at this point in the history
Allow on demand publishing to dockerhub
  • Loading branch information
ca333 authored Aug 19, 2024
2 parents 65b2da0 + 298395c commit 3b3b2d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/komodod_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

name: Komodo CD test releases


on:
push:
branches:
- beta
- dev
- research
- master
workflow_dispatch:

jobs:

Expand Down Expand Up @@ -76,6 +76,7 @@ jobs:

osx-build:
name: OSX Build
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -106,6 +107,7 @@ jobs:

windows-build:
name: Windows Build (mingw)
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -140,6 +142,7 @@ jobs:

publish-release:
name: Publishing CD releases
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: ubuntu-20.04
needs: [linux-build, osx-build, windows-build]
steps:
Expand Down

0 comments on commit 3b3b2d5

Please sign in to comment.