Change escaping of double quotes to single quote

Release names contains quotes around commit hashes due to the escaping.
After this patch, they'll be gone.
This commit is contained in:
Kadir Cetinkaya 2020-10-26 09:59:09 +01:00 committed by kadir çetinkaya
parent 02bad4f0eb
commit a276cdf62f

View File

@ -31,7 +31,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Compute release info
run: |
echo "RELEASE_COMMIT_SHORT=$(printf \"%.12s\" ${{ steps.pick.outputs.sha }})" >> $GITHUB_ENV
echo "RELEASE_COMMIT_SHORT=$(printf '%.12s' ${{ steps.pick.outputs.sha }})" >> $GITHUB_ENV
echo "RELEASE_DATE=$(date -u +%Y%m%d)" >> $GITHUB_ENV
- name: Create release
uses: actions/create-release@master