Skip to content

Commit

Permalink
fix: remove arg from release name
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanspears committed Nov 1, 2023
1 parent 9eb206c commit ea95959
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
RELEASE_NAME="${{ github.event.repository.name }}"
if [ ! -z "${{ inputs.release_name }}" ]; then
RELEASE_NAME="-f ${{ inputs.release_name }}"
RELEASE_NAME="${{ inputs.release_name }}"
fi
helm upgrade ${RELEASE_NAME} ./deployments --install ${WAIT_ARG} ${TIMEOUT_ARG} --set image.tag="${{ inputs.image_tag }}" -n ${{ inputs.namespace }} ${ARG_VALUES_FILE}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-deployv2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
RELEASE_NAME="${{ github.event.repository.name }}"
if [ ! -z "${{ inputs.release_name }}" ]; then
RELEASE_NAME="-f ${{ inputs.release_name }}"
RELEASE_NAME="${{ inputs.release_name }}"
fi
helm upgrade ${RELEASE_NAME} ./deployments --install ${WAIT_ARG} ${TIMEOUT_ARG} --set image.tag="${{ inputs.image_tag }}" -n ${{ inputs.namespace }} ${ARG_VALUES_FILE}
- name: Update GitHub release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-deploy-notification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Send deployment notification
uses: slackapi/slack-github-action@v1.19.0
uses: slackapi/slack-github-action@v1.24.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.slack_webhook_url }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down

0 comments on commit ea95959

Please sign in to comment.