Skip to content

Commit

Permalink
Fix action release
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcn committed Jan 5, 2022
1 parent be8f69e commit 34d55a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/newRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
run: |
echo "FH_RELEASE_VERSION=$(cat $GITHUB_WORKSPACE/fastHistory/config/default_version.txt)" >> $GITHUB_ENV
- name: Show version
run: echo $FH_RELEASE_VERSION
run: echo ${{ env.FH_RELEASE_VERSION }}
- name: Create Github release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: v$FH_RELEASE_VERSION
release_name: v$FH_RELEASE_VERSION
tag_name: v${{ env.FH_RELEASE_VERSION }}
release_name: v${{ env.FH_RELEASE_VERSION }}
draft: false
prerelease: false

0 comments on commit 34d55a0

Please sign in to comment.