Use single quote in version action
This commit is contained in:
parent
1ee8071862
commit
8c5258c42d
1 changed files with 3 additions and 3 deletions
6
.github/workflows/version.yml
vendored
6
.github/workflows/version.yml
vendored
|
|
@ -19,15 +19,15 @@ jobs:
|
||||||
echo $(if [ "$API_TAG" = "$RELEASE_TAG" ]; then echo "UPGRADEABLE=true"; else echo "UPGRADEABLE=false"; fi) >> $GITHUB_ENV
|
echo $(if [ "$API_TAG" = "$RELEASE_TAG" ]; then echo "UPGRADEABLE=true"; else echo "UPGRADEABLE=false"; fi) >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Update and Commit files
|
- name: Update and Commit files
|
||||||
if: ${{ env.UPGRADEABLE == "true" }}
|
if: ${{ env.UPGRADEABLE == 'true' }}
|
||||||
run: |
|
run: |
|
||||||
echo $(cat ./package.json | jq -r --arg API_TAG "$API_TAG" '.version = $API_TAG') > package.json
|
echo $(cat ./package.json | jq -r --arg API_TAG "$API_TAG" '.version = $API_TAG') > package.json
|
||||||
git config --local user.email "actions@shock.network"
|
git config --local user.email "actions@shock.network"
|
||||||
git config --local user.name "Version Update Action"
|
git config --local user.name "Version Update Action"
|
||||||
git commit -m "version upgraded to ${API_TAG}" -a
|
git commit -m "version upgraded to ${API_TAG}" -a
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
if: ${{ env.UPGRADEABLE == "true" }}
|
if: ${{ env.UPGRADEABLE == 'true' }}
|
||||||
uses: ad-m/github-push-action@master
|
uses: ad-m/github-push-action@master
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
branch: "master"
|
branch: master
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue