Skip to content

Commit

Permalink
Merge pull request #19 from leancodepl/fix/release-archive-name
Browse files Browse the repository at this point in the history
Remove 'v' prefix from version in release archive names
  • Loading branch information
Saancreed authored Jul 19, 2021
2 parents 15cb608 + f79feea commit 9584768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
env:
BUILD_VERSION: ${{ steps.get_version.outputs.version }}
working-directory: src/LeanCode.ContractsGenerator/publish
run: zip --recurse-paths "../../../LeanCode.ContractsGenerator.v${BUILD_VERSION}.zip" .
run: zip --recurse-paths "../../../LeanCode.ContractsGenerator.${BUILD_VERSION}.zip" .
- name: Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: ${{ format('Release v{0}', steps.get_version.outputs.version) }}
tag_name: ${{ format('v{0}', steps.get_version.outputs.version) }}
files: ${{ format('./LeanCode.ContractsGenerator.v{0}.zip', steps.get_version.outputs.version) }}
files: ${{ format('./LeanCode.ContractsGenerator.{0}.zip', steps.get_version.outputs.version) }}

0 comments on commit 9584768

Please sign in to comment.