increase kafka binding client config timeout to 180s #188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |