Skip to content

Commit

Permalink
Merge branch 'main' into hugo/win-423-http-triggerspreprocessor-capture
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel authored Dec 17, 2024
2 parents 8ab5412 + aecf847 commit 04c87c8
Show file tree
Hide file tree
Showing 57 changed files with 2,057 additions and 845 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ on:
types: [opened, synchronize, reopened]
paths:
- "Dockerfile"
workflow_dispatch:
inputs:
ee:
description: 'Build EE image'
required: false

concurrency:
group: ${{ github.ref }}
Expand All @@ -26,10 +31,6 @@ permissions: write-all
jobs:
build:
runs-on: ubicloud
if:
(github.event_name != 'issue_comment') ||
(contains(github.event.comment.body, '/buildimage_all') ||
contains(github.event.comment.body, '/buildimage_base'))
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -92,10 +93,7 @@ jobs:
build_ee:
runs-on: ubicloud
if:
(github.event_name != 'issue_comment') ||
(contains(github.event.comment.body, '/buildimage_ee') ||
contains(github.event.comment.body, '/buildimage_nsjail')) ||
contains(github.event.comment.body, '/buildimage_all')
(github.event_name != 'workflow_dispatch') || (github.event.inputs.ee)
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -450,10 +448,7 @@ jobs:
needs: [build_ee]
runs-on: ubicloud
if:
(github.event_name != 'issue_comment') || (github.event_name !=
'pull_request') || (contains(github.event.comment.body,
'/buildimage_nsjail') || contains(github.event.comment.body,
'/buildimage_all'))
(github.event_name != 'pull_request') && (github.event_name != 'workflow_dispatch')
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -546,7 +541,7 @@ jobs:
publish_ecr_s3:
needs: [build_ee_nsjail]
runs-on: ubicloud-standard-2-arm
if: github.event_name != 'pull_request'
if: (github.event_name != 'pull_request') && (github.event_name != 'workflow_dispatch')
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [1.439.0](https://github.com/windmill-labs/windmill/compare/v1.438.0...v1.439.0) (2024-12-15)


### Features

* add multipart/form-data support ([#4927](https://github.com/windmill-labs/windmill/issues/4927)) ([83a60cb](https://github.com/windmill-labs/windmill/commit/83a60cbc517d5ddab24b247fd5e452175d59ad07))


### Bug Fixes

* ECS terraform db url + ami issues ([#4924](https://github.com/windmill-labs/windmill/issues/4924)) ([5172c13](https://github.com/windmill-labs/windmill/commit/5172c13ab8e9aeb1a83c161e7e7f63ebfb40b008))

## [1.438.0](https://github.com/windmill-labs/windmill/compare/v1.437.1...v1.438.0) (2024-12-13)


Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 04c87c8

Please sign in to comment.