Skip to content

Commit

Permalink
Removing backticks since they added multiline content
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 1712daf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
ISSUE_TITLE: ${{ github.event.issue.title }}
steps:
- uses: actions/checkout@v4
- 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
- name: Determine base branch
run: |
if echo $RELEASE_VERSION | grep -q beta; then
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
token: ${{ secrets.GH_TOKEN_NVIDIA_CI_CD }}
repository: ${{ github.repository_owner }}/sriov-network-operator
path: sriov-network-operator-fork
- run:
echo "RELEASE_VERSION=`echo $ISSUE_TITLE | awk -F 'Release v' '{ print $2 }'`" >> $GITHUB_ENV
- run: |
echo "RELEASE_VERSION=$(echo $ISSUE_TITLE | awk -F 'Release v' '{ print $2 }')" >> $GITHUB_ENV
- name: Determine sriov-network-operator branch
run: |
major_minor=$(echo $RELEASE_VERSION | grep -Eo '[0-9]+\.[0-9]+')
Expand Down

0 comments on commit 1712daf

Please sign in to comment.