Skip to content

Commit

Permalink
ci: build dockers with workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Sep 11, 2023
1 parent 6538d1a commit f108365
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ on: # Trigger the workflow on push or pull request, but only for the master bran
- "requirements.txt"
- ".github/workflows/*docker*.yml"
- "setup.py"
workflow_dispatch: {}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

env:
PUSH_RELEASE: ${{ github.ref == 'refs/heads/master' }}
PUSH_RELEASE: ${{ github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' }}

jobs:
build-Devcontainer:
Expand Down

0 comments on commit f108365

Please sign in to comment.