Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Fix incorrect variable name (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter authored Aug 11, 2021
1 parent 4baa6b1 commit d12ef89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Push new version to $GITHUB_ENV
run: |
new_version=${{ fromJson(steps.get_latest_release.outputs.data).tag_name }}
echo "NEW_VERSION=$(echo $new_version)" >> $GITHUB_ENV
echo "new_version=$(echo $new_version)" >> $GITHUB_ENV
- name: Start updating this project
run: |
Expand All @@ -37,8 +37,8 @@ jobs:
- name: Send pull request to update to new version
uses: peter-evans/create-pull-request@v3
with:
title: Update to ROCC schemas ${{ env.NEW_VERSION }}
commit-message: Update to ROCC schemas ${{ env.NEW_VERSION }}
title: Update to ROCC schemas ${{ env.new_version }}
commit-message: Update to ROCC schemas ${{ env.new_version }}
body: |
A new version of the [ROCC schemas] is available.
Expand All @@ -51,7 +51,7 @@ jobs:
specification.
`npm run generate:server:version --schemas-version=${{
env.NEW_VERSION }}`
env.new_version }}`
3. Review the updates made to this tool in the [ROCC schemas
CHANGELOG].
Expand Down

0 comments on commit d12ef89

Please sign in to comment.