Skip to content

Commit

Permalink
fix release title
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed May 31, 2023
1 parent d18b1ab commit 0c93e4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,18 +118,18 @@ jobs:
data_${{ env.VERSION }}.zip
createRelease:
runs-on: ubuntu-latest
needs: [buildMac, buildWin]
needs: [buildMac, buildWin]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set version
run: echo "VERSION=$(echo "${{ github.ref }}" | cut -c12-)" >> $GITHUB_ENV
- uses: actions/download-artifact@v3
with:
name: release-artifacts
path: release-artifacts
- name: Create release
uses: softprops/action-gh-release@v1
with:
name: Version ${{ github.ref }}
name: Version ${{ env.VERSION }}
prerelease: ${{ contains(github.ref, 'rc') }}
body: see CHANGELOG.md
files: release-artifacts/*

0 comments on commit 0c93e4f

Please sign in to comment.