Skip to content

Commit

Permalink
use lowercase env
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Aug 12, 2020
1 parent 775b288 commit dae0f3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set env
run: echo ::set-env name=PKG_VERSION::$(awk '/version/{gsub(/("|",)/,"",$2);print $2}' package.json)
run: echo ::set-env name=pkg_version::$(awk '/version/{gsub(/("|",)/,"",$2);print $2}' package.json)
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: $PKG_VERSION
release_name: $PKG_VERSION
tag_name: ${{ pkg_version }}
release_name: ${{ pkg_version }}
body: |
Changes in this Release
- Change this
Expand Down

0 comments on commit dae0f3b

Please sign in to comment.