Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Do release
on:
workflow_dispatch:
inputs:
SOURCE_REF:
description: 'The hazelcast-docker branch to create the tag from'
VERSION:
description: 'The version to release'
required: true
RELEASE_TYPE:
description: 'What should be built'
Expand All @@ -20,8 +20,8 @@ on:
type: environment
workflow_call:
inputs:
SOURCE_REF:
description: 'The hazelcast-docker branch to create the tag from'
VERSION:
description: 'The version to release'
required: true
type: string
RELEASE_TYPE:
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: ./.github/actions/get-tag-name
id: tag-name
with:
SOURCE_REF: ${{ inputs.SOURCE_REF }}
SOURCE_REF: ${{ inputs.VERSION }}

- name: Create `${{ steps.tag-name.outputs.TAG_NAME }}` tag
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
-f sha="${SHA}"
env:
GH_TOKEN: ${{ github.token }}
SOURCE_REF: ${{ inputs.SOURCE_REF }}
SOURCE_REF: ${{ inputs.VERSION }}

- name: Create release
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1
Expand All @@ -75,15 +75,15 @@ jobs:
tag-image-push:
uses: ./.github/workflows/tag_image_push.yml
with:
SOURCE_REF: ${{ inputs.SOURCE_REF }}
SOURCE_REF: ${{ inputs.VERSION }}
RELEASE_TYPE: ${{ inputs.RELEASE_TYPE }}
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
secrets: inherit

ee-nlc-tag-push:
uses: ./.github/workflows/ee-nlc-tag-push.yml
with:
SOURCE_REF: ${{ inputs.SOURCE_REF }}
SOURCE_REF: ${{ inputs.VERSION }}
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
secrets: inherit

Expand Down
Loading