Skip to content

Commit

Permalink
bug: add missing indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Ido Heyvi <iheyvi@nvidia.com>
  • Loading branch information
heyvister1 committed Jan 21, 2025
1 parent 730ff1a commit 28ec82d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ jobs:
ISSUE_TITLE: ${{ github.event.issue.title }}
steps:
- uses: actions/checkout@v4
<<<<<<< Updated upstream
- run:
echo "RELEASE_VERSION=`echo $ISSUE_TITLE | awk '{ print $2 }'`" >> $GITHUB_ENV
echo "CHART_VERSION=`echo "${RELEASE_VERSION#v}"`" >> $GITHUB_ENV
=======
- run: |
echo "RELEASE_VERSION=$(echo $ISSUE_TITLE | awk '{ print $2 }')" >> $GITHUB_ENV
echo "CHART_VERSION=${RELEASE_VERSION#v}" >> $GITHUB_ENV
>>>>>>> Stashed changes
- name: Determine base branch
run: |
if echo $RELEASE_VERSION | grep -q beta; then
Expand Down

0 comments on commit 28ec82d

Please sign in to comment.