Skip to content

increase kafka binding client config timeout to 180s #188

increase kafka binding client config timeout to 180s

increase kafka binding client config timeout to 180s #188

Workflow file for this run

name: Deploy to Github Releases
on:
pull_request:
types: [closed]
branches:
- master
- 'releases/**'
jobs:
pre:
name: Prepare workflow run
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.skip-check.outputs.should_skip }}
steps:
- name: Check if workflow should be skipped
id: skip-check
uses: fkirc/skip-duplicate-actions@v5
with:
github_token: ${{ github.token }}
paths_ignore: '["**.md", "dev/**"]'
build:
name: Build
needs: pre
if: ${{ needs.pre.outputs.skip != 'true' && github.event.pull_request.merged }}
uses: ./.github/workflows/build.yml
with:
skip_tests: true
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Create Github release
id: create-release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/heads/master')
with:
name: "${{ needs.build.outputs.version_tag }}: ${{ github.event.pull_request.title }}"
tag_name: ${{ needs.build.outputs.version_tag }}
body: ${{ github.event.pull_request.body }}
files: |
dist/cf-mendix-buildpack.zip
token: ${{ secrets.GITHUB_TOKEN }}