Skip to content

Commit

Permalink
Update release workflow (#613)
Browse files Browse the repository at this point in the history
- Update AWS secrets
- Rework condition for Slack notification
  • Loading branch information
alexander-smolyakov authored Jan 30, 2023
1 parent 4517567 commit 4d179e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ jobs:
test_run: ${{ inputs.test_run }}

secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.PRODUCTION_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.PRODUCTION_AWS_SECRET_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

github-release:
name: GitHub Release
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

slack-notification:
name: Slack Notification
if: ${{ failure() }}
if: ${{ failure() && (!inputs.test_run || inputs.nightly_release) }}

needs:
[
Expand Down

0 comments on commit 4d179e0

Please sign in to comment.