Skip to content

Commit

Permalink
Update deploy step of the test and release workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
ylabonte committed Jul 12, 2023
1 parent 9855a37 commit 362665a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ jobs:
run: |
VERSION="${{ github.ref }}"
VERSION=${VERSION##*/v}
echo "::set-output name=VERSION::$VERSION"
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
BODY=$(git show -s --format=%b)
BODY="${BODY//'%'/'%25'}"
BODY="${BODY//$'\n'/'%0A'}"
BODY="${BODY//$'\r'/'%0D'}"
echo "::set-output name=BODY::$BODY"
echo "BODY=$BODY" >> $GITHUB_OUTPUT
- name: Install Dependencies
run: npm ci
Expand Down

0 comments on commit 362665a

Please sign in to comment.